action vtex_get_skucomplementby_skuid { label: "Get SKU Complement by SKU ID" description: "Retrieves an existing SKU Complement by its SKU ID. \n \n## Response body example \n \n```json \n[ \n { \n \"Id\": 61, \n \"SkuId\": 7, \n \"ParentSkuId\": 1, \n \"ComplementTypeId\": 1 \n } \n] \n```" provider: vtex method: GET path: "/api/catalog/pvt/stockkeepingunit/{skuId}/complement" 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" required: ["ComplementTypeId", "Id", "ParentSkuId", "SkuId"] items: { type: "object" properties: { ComplementTypeId: { type: "integer" 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." } Id: { type: "integer" description: "SKU Complement’s unique numerical identifier." } ParentSkuId: { type: "integer" description: "ID of the Parent SKU, where the Complement will be inserted." } SkuId: { type: "integer" description: "ID of the SKU which will be inserted as a Complement in the Parent SKU." } } } } }