Skip to main content
PUT
/
job
/
{id}
/
duedate
Set Job Due Date
curl --request PUT \
  --url http://{host}:{port}/{contextPath}/job/{id}/duedate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "duedate": "2013-08-13T18:43:28.000+0200",
  "cascade": false
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the job to be updated.

Body

application/json
duedate
string<date-time> | null

The date to set when the job has the next execution.

cascade
boolean | null

A boolean value to indicate if modifications to the due date should cascade to subsequent jobs. (e.g. Modify the due date of a timer by +15 minutes. This flag indicates if a +15 minutes should be applied to all subsequent timers.) This flag only affects timer jobs and only works if due date is not null. Default: false

Response

Request successful. This method returns no content.