Skip to main content
PUT
/
external-task
/
{id}
/
priority
Set Priority
curl --request PUT \
  --url http://{host}:{port}/{contextPath}/external-task/{id}/priority \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "priority": 5
}'
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 external task to set the priority for.

Body

application/json
priority
integer | null

The priority of the resource.

Response

Request successful.