Check products and variants delivery setup

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 /checks/deliveries

Products or variants with errors and not eligible for delivery.

Headers

  • X-Application-Name string

Query parameters

  • client_id string Required

    Client identifier

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • errors array[object]

      Error

      Hide errors attributes Show errors attributes object
      • code

        Possible error codes:

        • MISSING_DELIVERY - there are no deliveries currently set
        • MISSING_PACKAGE_DELIVERY - there are no deliveries for specific product/variant package size
        • OVERSIZE_ARTICLE - some articles are subject to the maximum delivery dimension restrictions
        • OVERWEIGHT_ARTICLE - some articles are subject to the maximum delivery weight restrictions
      • attribute

        Inspected attribute

      • value

        Attribute value

      • msg

        Error message

      • articles array[string]

        First 100 articles with error

GET /checks/deliveries
curl \
 --request GET 'https://mpapi.proxy.omnicado.com/v1/checks/deliveries?client_id=yourClientId&client_id=api_token_value' \
 --header "X-Application-Name: myApplicationName"
Response examples (200)
{
  "errors": [
    {
      "code": "MISSING_PACKAGE_DELIVERY",
      "attribute": "package_size",
      "value": "smallbox",
      "msg": "There is no delivery for 'smallbox' package size",
      "articles": [
        "1755",
        "1756"
      ]
    }
  ]
}