action vtex_get_api_catalog_pvt_skuservicevalue_sku_service_value_id { label: "Get SKU Service Value" description: "Retrieves an existing SKU Service Value. \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: GET path: "/api/catalog/pvt/skuservicevalue/{skuServiceValueId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuServiceValueId: { type: "integer" } } required: ["Accept", "Content-Type", "skuServiceValueId"] 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." } } } }