VTEX · Example Payload

Vtex Getproductspecification Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Getproductspecification 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": "GetProductSpecification",
  "method": "GET",
  "path": "/api/catalog_system/pvt/products/{productId}/specification",
  "summary": "VTex Get product specifications by product ID",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "Value": [
            "Iron",
            "Plastic"
          ],
          "Id": 30,
          "Name": "Material"
        }
      ]
    }
  ]
}