action vtex_get_product_specificationby_product_id { label: "Get Product Specification and its information by Product ID" description: "Retrieves information of all specifications of a product by the product's ID. \n \n ### Response body example \n \n```json \n[ \n { \n \"Id\": 227, \n \"ProductId\": 1, \n \"FieldId\": 33, \n \"FieldValueId\": 135, \n \"Text\": \"ValueA\" \n }, \n { \n \"Id\": 228, \n \"ProductId\": 1, \n \"FieldId\": 34, \n \"FieldValueId\": 1, \n \"Text\": \"Giant\" \n } \n] \n```" provider: vtex method: GET path: "/api/catalog/pvt/product/{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" description: "Object with the product specification information." properties: { FieldId: { type: "integer" description: "Specification ID." } FieldValueId: { type: "integer" description: "Current specification value ID." } Id: { type: "integer" description: "ID of the association of the specification and the product. This ID is used to update or delete the specification." } ProductId: { type: "integer" description: "Product ID." } Text: { type: "string" description: "Current specification value text." } } } } }