API v1.0
Get Task Status
Returns just the current status of a task (created, running, finished, stopped, or paused). More lightweight than the full task details endpoint.
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Enumeration of possible task states.
- created: Task is initialized but not yet started
- running: Task is currently executing
- finished: Task has completed successfully
- stopped: Task was manually stopped
- paused: Task execution is temporarily paused
- failed: Task encountered an error and could not complete
Available options:
created
, running
, finished
, stopped
, paused
, failed
Was this page helpful?