VTEX · Example Payload

Vtex Listsku Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Listsku 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": "ListSKU",
  "method": "GET",
  "path": "/api/catalog-seller-portal/skus/ids",
  "summary": "VTex Get List of SKUs",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": [
          "1",
          "2"
        ],
        "_metadata": {
          "total": 2,
          "from": 1,
          "to": 5
        }
      }
    }
  ]
}