action vtex_post_api_catalog_pvt_skuattachment { label: "Associate SKU Attachment" description: "Associates an existing SKU to an existing Attachment. \n## Request body example \n \n```json \n{ \n \"AttachmentId\": 1, \n \"SkuId\": 7 \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 31, \n \"AttachmentId\": 1, \n \"SkuId\": 7 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/skuattachment" encoding: json input: { type: "object" properties: { Accept: { type: "string" } AttachmentId: { type: "integer" description: "Attachment ID." } "Content-Type": { type: "string" } SkuId: { type: "integer" description: "Unique identifier of an SKU." } } required: ["Accept", "AttachmentId", "Content-Type", "SkuId"] additionalProperties: false } output: { type: "object" description: "Object containing information about the association between the SKU and the attachment." properties: { AttachmentId: { type: "integer" description: "Attachment ID." } Id: { type: "integer" description: "Identifier of the SKU's association to the attachment." } SkuId: { type: "integer" description: "Unique identifier of the SKU." } } } }