Update product supply delay 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
PUT /products/{productId}/supply-delay

Headers

  • X-Application-Name string

Path parameters

  • productId string Required

    Partner's product identifier

Query parameters

  • client_id string Required

    Client identifier

application/json

Body Required

  • valid_from string(date-time)

    Validity start date and time, if you don't send it, the actual date and time will be used

  • valid_to string(date-time) Required

    validity end date and time

Responses

  • 200

    OK

PUT /products/{productId}/supply-delay
curl \
 --request PUT 'https://mpapi.proxy.omnicado.com/v1/products/F192621/supply-delay?client_id=yourClientId&client_id=api_token_value' \
 --header "Content-Type: application/json" \
 --header "X-Application-Name: myApplicationName" \
 --data '{"valid_from":"2017-01-27 00:00:00","valid_to":"2017-02-05 00:00:00"}'
Request examples
# Headers
X-Application-Name: myApplicationName

# Payload
{
  "valid_from": "2017-01-27 00:00:00",
  "valid_to": "2017-02-05 00:00:00"
}