action vtex_get_api_catalog_pvt_specification_nonstructured_id { label: "Get Non Structured Specification by ID" description: "Retrieves general information about unmapped Specifications of a Seller's SKU in a Marketplace. \n## Response body example \n \n```json \n{ \n \"Id\": 1010, \n \"SkuId\": 310119072, \n \"SpecificationName\": \"size\", \n \"SpecificationValue\": \"Small\" \n} \n```" provider: vtex method: GET path: "/api/catalog/pvt/specification/nonstructured/{Id}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } Id: { type: "integer" } } required: ["Accept", "Content-Type", "Id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { Id: { type: "integer" description: "Non Structured Specification’s unique numerical identifier." } SkuId: { type: "integer" description: "SKU's unique numerical identifier." } SpecificationName: { type: "string" description: "Name of the Non Structured Specification." } SpecificationValue: { type: "string" description: "Value of the Non Structured Specification." } } } } }