action vtex_get_skucomplementsbytype { label: "Get SKU complements by type" description: "Retrieves all the existing SKU complements with the same complement type ID of a specific SKU. \n \n## Response body example \n \n```json \n{ \n \"ParentSkuId\": 1, \n \"ComplementSkuIds\": [ \n 7 \n ], \n \"Type\": \"1\" \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/sku/complements/{parentSkuId}/{type}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } parentSkuId: { type: "integer" } type: { type: "integer" } } required: ["Accept", "Content-Type", "parentSkuId", "type"] additionalProperties: false } output: { type: "object" required: ["ComplementSkuIds", "ParentSkuId", "Type"] properties: { ComplementSkuIds: { type: "array" description: "Array with SKU complements IDs." items: { type: "integer" description: "SKU Complement ID." } } ParentSkuId: { type: "integer" description: "ID of the Parent SKU, where the Complement is inserted." } Type: { type: "string" description: "Complement Type ID. This represents the type of the complement. The possible values are: `1` for Accessory; `2` for Suggestion; `3` for Similar Product; `5` for Show Together." } } } }