Delete a retailer product

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://content.doc.winkelstraat.nl/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Content API MCP server": {
  "url": "https://content.doc.winkelstraat.nl/mcp"
}
Close
DELETE /api/rest/v1/retailer/products/{code}

This endpoint allows you to delete a given retailer product.

Path parameters

  • code string Required

    Code of the resource

Responses

  • 202

    The request was accepted but has not been processed

  • 204

    No content to return

  • 401 application/json

    Authentication required

    Hide response attributes Show response attributes object
    • code integer

      HTTP status code

    • message string

      Message explaining the error

  • 403 application/json

    Access forbidden

    Hide response attributes Show response attributes object
    • code integer

      HTTP status code

    • message string

      Message explaining the error

  • 404 application/json

    Resource not found

    Hide response attributes Show response attributes object
    • code integer

      HTTP status code

    • message string

      Message explaining the error

DELETE /api/rest/v1/retailer/products/{code}
curl \
 --request DELETE 'https://content.winkelstraat.nl/api/rest/v1/retailer/products/{code}'
Response examples (401)
401
Authentication is required
Response examples (401)
{
  "code": 42,
  "message": "string"
}
Response examples (403)
403
Access forbidden. You are not allowed to list categories.
Response examples (403)
{
  "code": 42,
  "message": "string"
}
Response examples (404)
404
Resource `my_resource_code` does not exist.
Response examples (404)
{
  "code": 42,
  "message": "string"
}