action vtex_post_api_catalog_pvt_skuservicetype { label: "Create SKU Service Type" description: "Creates a new SKU Service Type. \n## Request body example \n \n```json \n{ \n \"Name\": \"Test API Sku Services\", \n \"IsActive\": true, \n \"ShowOnProductFront\": true, \n \"ShowOnCartFront\": true, \n \"ShowOnAttachmentFront\": true, \n \"ShowOnFileUpload\": true, \n \"IsGiftCard\": true, \n \"IsRequired\": true \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 2, \n \"Name\": \"Teste API Sku Services\", \n \"IsActive\": true, \n \"ShowOnProductFront\": true, \n \"ShowOnCartFront\": true, \n \"ShowOnAttachmentFront\": true, \n \"ShowOnFileUpload\": true, \n \"IsGiftCard\": true, \n \"IsRequired\": true \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/skuservicetype" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } IsActive: { type: "boolean" description: "Defines if the SKU Service Type is active or not." } IsGiftCard: { type: "boolean" description: "Defines if the SKU Service Type is displayed as a Gift Card." } IsRequired: { type: "boolean" description: "Defines if the SKU Service type is mandatory." } Name: { type: "string" description: "SKU Service Type Name. Maximum of 100 characters." } ShowOnAttachmentFront: { type: "boolean" description: "Defines if the SKU Service Type has an attachment." } ShowOnCartFront: { type: "boolean" description: "Defines if the SKU Service Type is displayed on the cart screen." } ShowOnFileUpload: { type: "boolean" description: "Defines if the SKU Service Type can be associated with an attachment or not." } ShowOnProductFront: { type: "boolean" description: "Deprecated" } } required: ["Accept", "Content-Type", "IsActive", "IsGiftCard", "IsRequired", "Name", "ShowOnAttachmentFront", "ShowOnCartFront", "ShowOnFileUpload", "ShowOnProductFront"] additionalProperties: false } output: { type: "object" properties: { Id: { type: "integer" description: "SKU Service Type ID." } IsActive: { type: "boolean" description: "Defines if the SKU Service Type is active or not." } IsGiftCard: { type: "boolean" description: "Defines if the SKU Service Type is displayed as a Gift Card." } IsRequired: { type: "boolean" description: "Defines if the SKU Service type is mandatory." } Name: { type: "string" description: "SKU Service Type Name. Maximum of 100 characters." } ShowOnAttachmentFront: { type: "boolean" description: "Defines if the SKU Service Type has an attachment." } ShowOnCartFront: { type: "boolean" description: "Defines if the SKU Service Type is displayed on the cart screen." } ShowOnFileUpload: { type: "boolean" description: "Defines if the SKU Service Type can be associated with an attachment or not." } ShowOnProductFront: { type: "boolean" description: "Deprecated." } } } }