action vtex_update_product_specification { label: "Update Product Specification by Product ID" description: "Updates the value of a product specification by the product's ID. The ID or name can be used to identify what product specification will be updated. Specification fields must be previously created in your Catalog. \n \n### Request body example \n \n```json \n[ \n { \n \"Value\": [ \n \"Iron\", \n \"Plastic\" \n ], \n \"Id\": 30, \n \"Name\": \"Material\" \n } \n] \n```" provider: vtex method: POST path: "/api/catalog_system/pvt/products/{productId}/specification" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } productId: { type: "integer" } } required: ["Accept", "Content-Type", "productId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }