Get list of retailers products for renewal

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
GET /api/rest/v1/retailer/renew/products

This enpoint lists all product identifiers marked for renewal.

Responses

  • 200 application/json

    List

    Hide headers attribute Show headers attribute
    • Location string

      URI of the created resource

    Hide response attribute Show response attribute object
    • products array[string]
  • 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

  • 406 application/json

    Not Acceptable

    Hide response attributes Show response attributes object
    • code integer

      HTTP status code

    • message string

      Message explaining the error

  • 422 application/json

    Unprocessable entity

    Hide response attributes Show response attributes object
    • code integer

      HTTP status code

    • message string

      Message explaining the error

GET /api/rest/v1/retailer/renew/products
curl \
 --request GET 'https://content.winkelstraat.nl/api/rest/v1/retailer/renew/products'
Response examples (200)
[
  "identifier_1",
  "identifier_2"
]
Response examples (200)
# Headers
Location: string

# Payload
{
  "products": [
    "string"
  ]
}
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 (406)
406
‘xxx’ in ‘Accept‘ header is not valid. Only ‘application/json‘ is allowed.
Response examples (406)
{
  "code": 42,
  "message": "string"
}
Response examples (422)
422
Property "labels" expects an array as data, "NULL" given. Check the API reference documentation.
{
  "documentation": {
    "href": "http://api.akeneo.com/api-reference.html"
  }
}
Response examples (422)
{
  "code": 42,
  "message": "string"
}