JobStatus
Returns job status records for background jobs, such as bulk ticket updates. Job status data is available for one hour after a job is created.
View-Specific Information
Select
The following query is processed server-side while other filters are processed client-side within the provider:
SELECT * FROM JobStatus WHERE Id = '123'
Columns
| Name | Type | References | Description |
| Id [KEY] | String | Automatically assigned when the job is queued. | |
| Total | Integer | The total number of tasks this job is batching through. | |
| Progress | Integer | The number of tasks that have already been completed. | |
| Status | String | The current status of the job. Possible values: queued, working, failed, completed, killed. | |
| Message | String | The message from the job worker, if any. | |
| Results | String | The result data from processed tasks. | |
| Url | String | The URL to poll for status updates. |