action vtex_get_api_catalog_pvt_specification_nonstructured { label: "Get Non Structured Specification by SKU ID" description: "Gets general information about unmapped Specifications of a Seller's SKU in a Marketplace by SKU ID. \n## Response body example \n \n```json \n[ \n{ \n \"Id\": 1010, \n \"SkuId\": 310119072, \n \"SpecificationName\": \"size\", \n \"SpecificationValue\": \"Small\" \n} \n] \n```" provider: vtex method: GET path: "/api/catalog/pvt/specification/nonstructured" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuId: { type: "integer" } } required: ["Accept", "Content-Type", "skuId"] 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." } } } } }