action vtex_post_api_catalog_pvt_skuservice { label: "Associate SKU Service" description: "Associates an SKU Service to an SKU." provider: vtex method: POST path: "/api/catalog/pvt/skuservice" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } IsActive: { type: "boolean" description: "Defines if the SKU Service is active or not." } Name: { type: "string" description: "SKU Service Name. Maximum of 50 characters." } SkuId: { type: "integer" description: "SKU ID." } SkuServiceTypeId: { type: "integer" description: "SKU Service Type ID." } SkuServiceValueId: { type: "integer" description: "SKU Service Value ID." } Text: { type: "string" description: "Internal description of the SKU Service. Maximum of 100 characters." } } required: ["Accept", "Content-Type", "IsActive", "Name", "SkuId", "SkuServiceTypeId", "SkuServiceValueId", "Text"] additionalProperties: false } output: { type: "object" properties: { Id: { type: "integer" description: "SKU Service ID." } IsActive: { type: "boolean" description: "Defines if the SKU Service is active or not." } Name: { type: "string" description: "SKU Service Name. Maximum of 50 characters." } SkuId: { type: "integer" description: "SKU ID." } SkuServiceTypeId: { type: "integer" description: "SKU Service Type ID." } SkuServiceValueId: { type: "integer" description: "SKU Service Value ID." } Text: { type: "string" description: "Internal description of the SKU Service. Maximum of 100 characters." } } } }