VTEX · Example Payload

Vtex Getproductspecificationbyproductid Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Getproductspecificationbyproductid 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": "GetProductSpecificationbyProductID",
  "method": "GET",
  "path": "/api/catalog/pvt/product/{productId}/specification",
  "summary": "VTex Get product specifications and their information by product ID",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "Id": 227,
          "ProductId": 1,
          "FieldId": 33,
          "FieldValueId": 135,
          "Text": "ValueA"
        },
        {
          "Id": 228,
          "ProductId": 1,
          "FieldId": 34,
          "FieldValueId": 1,
          "Text": "Giant"
        }
      ]
    }
  ]
}