action vtex_post_api_catalog_pvt_skuservicevalue { label: "Create SKU Service Value" description: "Creates an SKU Service Value for an existing SKU Service Type. \n## Request body example \n \n```json \n{ \n \"SkuServiceTypeId\": 2, \n \"Name\": \"Test ServiceValue API\", \n \"Value\": 10.5, \n \"Cost\": 10.5 \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 2, \n \"SkuServiceTypeId\": 2, \n \"Name\": \"Test ServiceValue API\", \n \"Value\": 10.5, \n \"Cost\": 10.5 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/skuservicevalue" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } Cost: { type: "number" description: "SKU Service Value cost." } Name: { type: "string" description: "SKU Service Value name. Maximum of 100 characters." } SkuServiceTypeId: { type: "integer" description: "SKU Service Type ID." } Value: { type: "number" description: "SKU Service Value value." } } required: ["Accept", "Content-Type", "Cost", "Name", "SkuServiceTypeId", "Value"] additionalProperties: false } output: { type: "object" required: ["Cost", "Name", "SkuServiceTypeId", "Value"] properties: { Cost: { type: "number" description: "SKU Service Value cost." } Id: { type: "integer" description: "SKU Service Value ID." } Name: { type: "string" description: "SKU Service Value name. Maximum of 100 characters." } SkuServiceTypeId: { type: "integer" description: "SKU Service Type ID." } Value: { type: "number" description: "SKU Service Value value." } } } }