Update a Job
PATCH /jobs/:key
Can be used to:
Complete the job​
Set the status of the job to completed, with:
- (optionally)
variables
Fail the job​
Set the status of the job to failed, with:
retries- (optionally)
retryBackoff - (optionally)
errorMessage
Throw an error for the job​
Set the status of the job to error_thrown, with:
errorCode- (optionally)
errorMessage
Path Parameters
- key int64 required
Key (unique identifier) of the job to update
- application/json
Request Body required
A request to update a job
- status string required
Requested state for the job, either one of
completed,failed, orerror_thrown - retries int32
Number of retries for the job when it
failed - retryBackoff string
Default value:
0msDuration after which the job becomes
activatableagain when itfailed - errorCode string
Code to match an error catch event when job state
error_thrownrequested - errorMessage string
Message to describe the error when job state
error_thrownrequested variables object
Variables to set for the job
Responses
- 204
- 503
Successfully updated the job
- application/json
- Schema
- Example (from schema)
Schema
- data
- error string
{
"data": {},
"error": "string"
}
Unable to connect to Zeebe cluster
Loading...