Get list of partner defined deliveries Deprecated

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://mall-api-proxy.documentation.omnicado.com/mcp

Standard setup for AI tools providing an mcp.json file

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

Close
GET /deliveries/partner

Replaced by /v2/transports endpoints.

Deliveries defined by partner to enrich general deliveries with special delivery methods.

Headers

  • X-Application-Name string

Query parameters

  • client_id string Required

    Client identifier

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • data object
      Hide data attribute Show data attribute object
      • ids array[string]
    • result object
      Hide result attributes Show result attributes object
      • code integer(int)
      • status string
    • paging object
      Hide paging attributes Show paging attributes object
      • pages integer
      • size integer
      • page integer
GET /deliveries/partner
curl \
 --request GET 'https://mpapi.proxy.omnicado.com/v1/deliveries/partner?client_id=yourClientId&client_id=api_token_value' \
 --header "X-Application-Name: myApplicationName"
Response examples (200)
{
  "data": {
    "ids": [
      "PD1",
      "PD2"
    ]
  },
  "result": {
    "code": 200,
    "status": "OK"
  },
  "paging": {
    "pages": 1,
    "size": 1,
    "page": 1
  }
}