Update the priority of a consignment

Path Parameters
  • consignmentId
    Type: stringFormat: uuid
    required
Body·
application/json
  • priority
    Type: integerenum

    Integer numbers.

    values
    • Normal = 2
    • High = 3
    • Urgent = 4
Responses
  • 200

    OK

Request Example for put/v1/consignments/{consignmentId}/priority
curl https://api.consignlyhq.com/v1/consignments/123e4567-e89b-12d3-a456-426614174000/priority \
  --request PUT \
  --header 'Content-Type: application/json' \
  --data '{
  "priority": "enum (Normal = 2, High = 3, Urgent = 4)"
}'
No Body