Task_schedules
Pass the username and password of a user in the authorization header. This currently gives full access.
List of task schedules.
1Error returned from the data management.
GET /api/v2/task_schedules HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
{
"count": 1,
"task_schedules": []
}Pass the username and password of a user in the authorization header. This currently gives full access.
ID or name of task. Task names are not unique, it's recommended to use ID.
A specific task schedule.
The requested resource was not found. The detailed error will be of type not_found.
Error returned from the data management.
GET /api/v2/tasks/{task_id}/task_schedule HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
No content
Pass the username and password of a user in the authorization header. This currently gives full access.
ID or name of task. Task names are not unique, it's recommended to use ID.
A specific task schedule.
The received resource was not correctly formatted.
Error returned from the data management.
POST /api/v2/tasks/{task_id}/task_schedule HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
No content
Pass the username and password of a user in the authorization header. This currently gives full access.
ID or name of task. Task names are not unique, it's recommended to use ID.
A specific task schedule.
The received resource was not correctly formatted.
Error returned from the data management.
PUT /api/v2/tasks/{task_id}/task_schedule HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
No content
Pass the username and password of a user in the authorization header. This currently gives full access.
ID or name of task. Task names are not unique, it's recommended to use ID.
Task schedule destroyed.
No content
Error returned from the data management.
DELETE /api/v2/tasks/{task_id}/task_schedule HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
No content
Last updated
Was this helpful?