Check products/variants media

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/media

ℹ NOTE

Only first 100 errors are shown.

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:

        • MEDIA_VALIDATION_ERROR - product or variant has invalid media file
      • attribute

        Inspected attribute

      • value

        Attribute value

      • msg

        Error message

      • articles array[string]

        First 100 articles with error

GET /checks/media
curl \
 --request GET 'https://mpapi.proxy.omnicado.com/v1/checks/media?client_id=yourClientId&client_id=api_token_value' \
 --header "X-Application-Name: myApplicationName"
Response examples (200)
{
  "errors": [
    {
      "code": "MEDIA_VALIDATION_ERROR",
      "attribute": "media",
      "value": "https://example.com/image.jpg",
      "msg": "Sent media exceeded allowed value of 2000px",
      "articles": [
        "1755",
        "1756"
      ]
    }
  ]
}