v1

latestOpenAPI 3.0.22026-07-223907721.1 MB
Report

Send Data

Send partial report data to the Channel API. Once all data is sent, the reportId must be marked as completed by calling POST /v1/channel/report/{reportId}/completed. A report is only valid up to 48h after requesting it.

post/v1/channel/report/{reportId}/data

Path parameters

reportIdstring required

Identifier of the report to send data to

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