Get Jobs
Queries for jobs that fulfill given parameters. The size of the result set can be retrieved by using the Get Job Count method.
Method
GET /job
Parameters
Query Parameters
| Name | Description | 
|---|---|
| jobId | Filter by job id. | 
| jobIds | Filter by a comma-separated list of job ids. | 
| jobDefinitionId | Only select jobs which exist for the given job definition. | 
| processInstanceId | Only select jobs which exist for the given process instance. | 
| processInstanceIds | Only select jobs which exist for the given comma-separated list of process instance ids. | 
| executionId | Only select jobs which exist for the given execution. | 
| processDefinitionId | Filter by the id of the process definition the jobs run on. | 
| processDefinitionKey | Filter by the key of the process definition the jobs run on. | 
| activityId | Only select jobs which exist for an activity with the given id. | 
| withRetriesLeft | Only select jobs which have retries left. Value may only be true, asfalseis the default behavior. | 
| executable | Only select jobs which are executable, i.e., retries > 0 and due date is nullor due date is in the past. Value may only betrue, asfalseis the default behavior. | 
| timers | Only select jobs that are timers. Cannot be used together with messages. Value may only betrue, asfalseis the default behavior. | 
| messages | Only select jobs that are messages. Cannot be used together with timers. Value may only betrue, asfalseis the default behavior. | 
| dueDates | Only select jobs where the due date is lower or higher than the given date.
    Due date expressions are comma-separated and are structured as follows: A valid condition value has the form operator_value.operatoris the comparison operator to be used andvaluethe date value as string.Valid operator values are: gt- greater than;lt- lower than.valuemay not contain underscore or comma characters. | 
| createTimes | Only select jobs created before or after the given date.
    Create time expressions are comma-separated and are structured as follows: A valid condition value has the form operator_value.operatoris the comparison operator to be used andvaluethe date value as string.Valid operator values are: gt- greater than;lt- lower than.valuemay not contain underscore or comma characters. | 
| withException | Only select jobs that failed due to an exception. Value may only be true, asfalseis the default behavior. | 
| exceptionMessage | Only select jobs that failed due to an exception with the given message. | 
| failedActivityId | Only select jobs that failed due to an exception at an activity with the given id. | 
| noRetriesLeft | Only select jobs which have no retries left. Value may only be true, asfalseis the default behavior. | 
| active | Only include active jobs. Value may only be true, asfalseis the default behavior. | 
| suspended | Only include suspended jobs. Value may only be true, asfalseis the default behavior. | 
| priorityLowerThanOrEquals | Only include jobs with a priority lower than or equal to the given value. Value must be a valid longvalue. | 
| priorityHigherThanOrEquals | Only include jobs with a priority higher than or equal to the given value. Value must be a valid longvalue. | 
| tenantIdIn | Only include jobs which belong to one of the passed and comma-separated tenant ids. | 
| withoutTenantId | Only include jobs which belong to no tenant. Value may only be true, asfalseis the default behavior. | 
| includeJobsWithoutTenantId | Include jobs which belong to no tenant. Can be used in combination with tenantIdIn. Value may only betrue, asfalseis the default behavior. | 
| sortBy | Sort the results by a given criterion. Valid values are jobId,executionId,processInstanceId,processDefinitionId,processDefinitionKey,jobPriority,jobRetries,jobDueDateandtenantId.
    Must be used in conjunction with thesortOrderparameter. | 
| sortOrder | Sort the results in a given order. Values may be ascfor ascending order ordescfor descending order.
    Must be used in conjunction with thesortByparameter. | 
| firstResult | Pagination of results. Specifies the index of the first result to return. | 
| maxResults | Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left. | 
Result
A JSON array of job objects. Each job object has the following properties:
| Name | Value | Description | 
|---|---|---|
| id | String | The id of the job. | 
| jobDefinitionId | String | The id of the associated job definition. | 
| dueDate | String | The date on which this job is supposed to be processed. | 
| processInstanceId | String | The id of the process instance which execution created the job. | 
| executionId | String | The specific execution id on which the job was created. | 
| processDefinitionId | String | The id of the process definition which this job belongs to. | 
| processDefinitionKey | String | The key of the process definition which this job belongs to. | 
| retries | Number | The number of retries this job has left. | 
| exceptionMessage | String | The message of the exception that occurred, the last time the job was executed. Is null when no exception occurred. | 
| failedActivityId | String | The id of the activity on which the last exception occurred, the last time the job was executed. Is null when no exception occurred. | 
| suspended | Boolean | A flag indicating whether the job is suspended or not. | 
| priority | Number | The job's priority for execution. | 
| tenantId | String | The id of the tenant which this job belongs to. | 
| createTime | String | The date on which this job has been created. | 
Response Codes
| Code | Media type | Description | 
|---|---|---|
| 200 | application/json | Request successful. | 
| 400 | application/json | Returned if some of the query parameters are invalid, for example if a sortOrderparameter is supplied, but nosortBy, or if an invalid operator for due date comparison is used. See the Introduction for the error response format. | 
Example
Request
GET /job/count?dueDates=gt_2012-07-17T17:00:00.000+0200,lt_2012-07-17T18:00:00.000+0200&createTimes=gt_2012-05-05T10:00:00.000+0200,lt_2012-07-16T15:00:00.000+0200
Response
[
  {
    "id": "aJobId",
    "jobDefinitionId": "aJobDefinitionId",
    "dueDate": "2018-07-17T17:05:00.000+0200",
    "processInstanceId": "aProcessInstanceId",
    "processDefinitionId": "aProcessDefinitionId",
    "processDefinitionKey": "aPDKey",
    "executionId": "anExecutionId",
    "retries": 0,
    "exceptionMessage": "An exception Message",
    "failedActivityId": "anActivityId",
    "suspended": false,
    "priority": 10,
    "tenantId": null,
    "createTime": "2018-05-05T17:00:00+0200"
  },
  {
    "id": "anotherJobId",
    "jobDefinitionId": "anotherJobDefinitionId",
    "dueDate": "2018-07-17T17:55:00.000+0200",
    "processInstanceId": "aProcessInstanceId",
    "processDefinitionId": "anotherPDId",
    "processDefinitionKey": "anotherPDKey",
    "executionId": "anotherExecutionId",
    "retries": 0,
    "exceptionMessage": "Another exception Message",
    "failedActivityId": "anotherActivityId",
    "suspended": true,
    "priority": 8,
    "tenantId": null,
    "createTime": "2018-05-05T17:00:00+0200"
  }
]