action vtex_post_api_catalog_pvt_skuservicetypeattachment { label: "Associate SKU Service Attachment" description: "Associates an Attachment for an existing SKU Service Type. \n## Request body example \n \n```json \n{ \n \"AttachmentId\": 1, \n \"SkuServiceTypeId\": 1 \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 1, \n \"AttachmentId\": 1, \n \"SkuServiceTypeId\": 1 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/skuservicetypeattachment" encoding: json input: { type: "object" properties: { Accept: { type: "string" } AttachmentId: { type: "integer" description: "Attachment ID." } "Content-Type": { type: "string" } SkuServiceTypeId: { type: "integer" description: "An explanation about the purpose of this instance." } } required: ["Accept", "AttachmentId", "Content-Type", "SkuServiceTypeId"] additionalProperties: false } output: { type: "object" properties: { AttachmentId: { type: "integer" description: "Attachment ID." } Id: { type: "integer" description: "SKU Service Type Attachment association ID." } SkuServiceTypeId: { type: "integer" description: "SKU Service Type ID." } } } }