v1

latestOpenAPI 3.0.22026-07-223907721.1 MB
Report

Report

This API route is deprecated and will be removed soon. Use POST /v1/channel/report/{reportId}/data instead.

Send processed report data to the Channel API. On this API route, the maximum allowed size of items is 25,000.

post/v1/channel/report/{reportId}

Path parameters

reportIdstring required

Target report identifier

Request body

offerIdinteger

Unique Offer Id to identify an Offer on a Sales Channel.

channelOfferIdstring

Channel defined unique Offer Id to identify an Offer on a Sales Channel.

skustring

Stock keeping unit is a unique Id used to identify one product.

eanstring
quantitystring
titlestring
channelCategoryIdstring

Example request

[
  {
    "offerId": 5437233,
    "channelOfferId": "XCD233554",
    "sku": "BEER-001",
    "ean": "4003227021106",
    "quantity": "1.0",
    "priceList": [
      {
        "id": "B2C",
        "quantityPriceList": [
          {
            "amount": "14.65",
            "currency": "EUR",
            "quantity": "1.0"
          }
        ]
      }
    ],
    "title": "One of the best Beer in the World.",
    "channelCategoryId": "4355111",
    "channelAttributeList": [
      {
        "attributeId": "1332",
        "value": "MyBeerBrand",
        "group": "1"
      }
    ]
  }
]

Response

Report data accepted (deprecated)