Skip to main content
PUT
/
job
/
{id}
/
priority
Set Job Priority
curl --request PUT \
  --url http://{host}:{port}/{contextPath}/job/{id}/priority \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "priority": 10
}'
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
priority
integer | null

The priority of the resource.

Response

Request successful. This method returns no content.