Get outstanding delivery methods

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://docs.enjovia.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Enjovia API MCP server": {
  "url": "https://docs.enjovia.com/mcp"
}
Close
GET /packages/outstanding/delivery-methods

Requires view_orders permission

Headers

  • Account-ID string(uuid) Required

    Account ID - Can be found on the Dashboard under Settings → API Tokens

Responses

  • 200 application/json

    Outstanding delivery methods with counts

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • delivery_method object
      • count integer
GET /packages/outstanding/delivery-methods
curl \
 --request GET 'https://api.asia.enjovia.app/packages/outstanding/delivery-methods' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Account-ID: string"
Response examples (200)
{
  "data": [
    {
      "delivery_method": {},
      "count": 42
    }
  ]
}