Change order status

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api.documentation.omnicado.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "omnicado MCP server": {
    "url": "https://api.documentation.omnicado.com/mcp"
  }
}

Close
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"
}