Task_callbacks

Lists all task callbacks.

get

API Key Scope: task_callbacks / index

Authorizations
AuthorizationstringRequired

Pass the username and password of a user in the authorization header. This currently gives full access.

Path parameters
task_idstringRequired

ID or name of task. Task names are not unique, it's recommended to use ID.

Query parameters
limitintegerOptional

The number of items to display for pagination.

offsetintegerOptional

The number of items to skip for pagination.

Responses
200

List of task callbacks.

application/json
get
/tasks/{task_id}/task_callbacks
200

List of task callbacks.

Creates a new task callback.

post

API Key Scope: task_callbacks / create

Authorizations
AuthorizationstringRequired

Pass the username and password of a user in the authorization header. This currently gives full access.

Path parameters
task_idstringRequired

ID or name of task. Task names are not unique, it's recommended to use ID.

Body
idstring · int64Read-onlyOptional
typestring · enumOptionalPossible values:
languagestring · enumOptionalPossible values:
scriptstringOptional
Responses
post
/tasks/{task_id}/task_callbacks

Displays a specific task callback.

get

API Key Scope: task_callbacks / show

Authorizations
AuthorizationstringRequired

Pass the username and password of a user in the authorization header. This currently gives full access.

Path parameters
task_idstringRequired

ID or name of task. Task names are not unique, it's recommended to use ID.

task_callback_idstringRequired

ID of task callback.

Responses
200

A specific task callback.

application/json
get
/tasks/{task_id}/task_callbacks/{task_callback_id}

Updates a specific task callback.

put

API Key Scope: task_callbacks / update

Authorizations
AuthorizationstringRequired

Pass the username and password of a user in the authorization header. This currently gives full access.

Path parameters
task_idstringRequired

ID or name of task. Task names are not unique, it's recommended to use ID.

task_callback_idstringRequired

ID of task callback.

Body
idstring · int64Read-onlyOptional
typestring · enumOptionalPossible values:
languagestring · enumOptionalPossible values:
scriptstringOptional
Responses
200

A specific task callback.

application/json
put
/tasks/{task_id}/task_callbacks/{task_callback_id}

Destroys a specific task callback.

delete

API Key Scope: task_callbacks / destroy

Authorizations
AuthorizationstringRequired

Pass the username and password of a user in the authorization header. This currently gives full access.

Path parameters
task_idstringRequired

ID or name of task. Task names are not unique, it's recommended to use ID.

task_callback_idstringRequired

ID of task callback.

Responses
delete
/tasks/{task_id}/task_callbacks/{task_callback_id}
204

Task callback destroyed.

No content

Last updated

Was this helpful?