action vtex_get_product_specification { label: "Get Product Specification by Product ID" description: "Retrieves all specifications of a product by the product's ID. \n> 📘 Onboarding guide \n> \n> Check the new [Catalog onboarding guide](https://developers.vtex.com/vtex-rest-api/docs/catalog-overview). We created this guide to improve the onboarding experience for developers at VTEX. It assembles all documentation on our Developer Portal about Catalog and is organized by focusing on the developer's journey. \n \n### Response 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: GET 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: "array" items: { type: "object" required: ["Value"] properties: { Id: { type: "integer" format: "int32" description: "ID of the Specification." } Name: { type: "string" description: "Name of the Specification." } Value: { type: "array" description: "Array with Specification values." items: { type: "string" description: "Specification value." } } } } } }