VTEX · Example Payload

Vtex Getfixedpricesonapricetable Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Getfixedpricesonapricetable 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": "GetFixedPricesonapricetable",
  "method": "GET",
  "path": "/pricing/prices/{itemId}/fixed/{priceTableId}",
  "summary": "VTex Get fixed prices on a price table or trade policy",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json; charset=utf-8",
      "example": [
        {
          "tradePolicyId": "6",
          "value": 20.9,
          "listPrice": 22.9,
          "minQuantity": 1,
          "dateRange": {
            "from": "2021-12-30T22:00:00-03:00",
            "to": "2021-12-30T22:00:00-04:00"
          }
        },
        {
          "tradePolicyId": "1",
          "value": 18.9,
          "listPrice": null,
          "minQuantity": 1
        }
      ]
    }
  ]
}