Change order status

PATCH /orders/status/{orderId}

Endpoint for handling order status updates

Update tracking code and tracking number for provided Order

application/json

Body Required

Update order status request

  • id integer(int64)

    Omnicado order ID

  • expeditionStatus string

Responses

  • 200

    Order is properly updated

  • 403

    If your account is not allowed to access this endpoint you will receive 403 Forbidden in reply

  • 404

    If order is not found 404 is provided

PATCH /orders/status/{orderId}
curl \
 --request PATCH 'api.services.omnicado.com/api/v2/orders/status/{orderId}' \
 --header "X-OMNICADO-TOKEN: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"id":42,"expeditionStatus":"packed"}'
Request examples
{
  "id": 42,
  "expeditionStatus": "packed"
}