VTEX · Example Payload

Vtex Put Apicatalogpvtproductproductidspecificationvalue Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Put Apicatalogpvtproductproductidspecificationvalue 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": "put-apicatalogpvtproductproductidspecificationvalue",
  "method": "PUT",
  "path": "/api/catalog/pvt/product/{productId}/specificationvalue",
  "summary": "VTex Associate product specification using specification name and group name",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "FieldName": "Material",
        "GroupName": "Composition",
        "RootLevelSpecification": true,
        "FieldValues": [
          "Cotton",
          "Polyester"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "Id": 239,
          "ProductId": 1,
          "FieldId": 85,
          "FieldValueId": 193,
          "Text": "Value123"
        }
      ]
    }
  ]
}