List Jobs

List all jobs. TODO (cliandy): implementation for pagination

Headers

AuthorizationstringRequired

Header authentication of the form Bearer <token>

Query parameters

source_idstringOptional
Only list jobs associated with the source.
beforestringOptional
Cursor for pagination
afterstringOptional
Cursor for pagination
limitintegerOptionalDefaults to 50
Limit for pagination
ascendingbooleanOptionalDefaults to true

Whether to sort jobs oldest to newest (True, default) or newest to oldest (False)

Response

Successful Response
created_by_idstring or null
The id of the user that made this object.
last_updated_by_idstring or null
The id of the user that made this object.
created_atstring or nullformat: "date-time"
The timestamp when the object was created.
updated_atstring or nullformat: "date-time"
The timestamp when the object was last updated.
statusenum or null
The status of the job.
completed_atstring or nullformat: "date-time"
The unix timestamp of when the job was completed.
metadataobject or null
The metadata of the job.
job_typeenum or null
The type of the job.
Allowed values:
callback_urlstring or null
If set, POST to this URL when the job completes.
callback_sent_atstring or nullformat: "date-time"
Timestamp when the callback was last attempted.
callback_status_codeinteger or null
HTTP status code returned by the callback endpoint.
callback_errorstring or null
Optional error message from attempting to POST the callback endpoint.
idstring or nullformat: "^(job|run)-[a-fA-F0-9]{8}"

The human-friendly ID of the Job