Task_schedules
API Key Scope: task_schedules / index
Pass the username and password of a user in the authorization header. This currently gives full access.
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
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
API Key Scope: task_schedules / create
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
API Key Scope: task_schedules / update
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
API Key Scope: task_schedules / destroy
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.
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?