VTEX · Example Payload

Vtex Getskuoffers Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Getskuoffers Example is an example object payload from VTEX, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "GetSKUoffers",
  "method": "GET",
  "path": "/offer-manager/pvt/product/{productId}/sku/{skuId}",
  "summary": "VTex Get Matched Offer's Data by SKU ID",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "productId": "1561208",
          "skuId": "1559161",
          "nameComplete": "Blusa Cardigan Manga Longa Vestem - Feminina - CINZA G",
          "mainImage": {
            "imagePath": "~/arquivos/ids/8567753-#width#-#height#/image-05b40d3167b5b7ed42285124f6862f12.jpg"
          },
          "sellersOffers": [
            {
              "sellerId": "1",
              "sellerSkuId": "1559161",
              "salesChannelOffer": [
                {
                  "salesChannelId": "1",
                  "salesChannelName": "Principal",
                  "price": 49.99,
                  "listPrice": 59.99,
                  "priceWithoutDiscount": 49.99,
                  "availableQuantity": 8
                },
                {
                  "salesChannelId": "2",
                  "salesChannelName": "Online Store",
                  "price": 47.99,
                  "listPrice": 59.99,
                  "priceWithoutDiscount": 47.99,
                  "availableQuantity": 12
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}