VTEX · Example Payload

Vtex Specificationsinsertfield Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Specificationsinsertfield 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": "SpecificationsInsertField",
  "method": "POST",
  "path": "/api/catalog_system/pvt/specification/field",
  "summary": "VTex Create specification field",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "Name": "Material",
        "CategoryId": 4,
        "FieldId": 88,
        "IsActive": true,
        "IsRequired": true,
        "FieldTypeId": 1,
        "FieldValueId": 1,
        "IsStockKeepingUnit": false,
        "Description": "Composition of the product.",
        "IsFilter": true,
        "IsOnProductDetails": false,
        "Position": 1,
        "IsWizard": false,
        "IsTopMenuLinkActive": true,
        "IsSideMenuLinkActive": true,
        "DefaultValue": null,
        "FieldGroupId": 20,
        "FieldGroupName": "Clothes specifications"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": 89
    }
  ]
}