Task_schedules
API Key Scope: task_schedules / index
List of task schedules.
Error returned from the data management.
GET /api/v2/task_schedules HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
{
"count": 1,
"task_schedules": []
}API Key Scope: task_schedules / show
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
API Key Scope: task_schedules / create
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
API Key Scope: task_schedules / update
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
API Key Scope: task_schedules / destroy
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?