action vtex_get_api_catalog_pvt_skuservice_sku_service_id { label: "Get SKU Service" description: "Retrieves an SKU Service. \n## Response body example \n \n```json \n{ \n \"Id\": 1, \n \"SkuServiceTypeId\": 1, \n \"SkuServiceValueId\": 1, \n \"SkuId\": 1, \n \"Name\": \"name\", \n \"Text\": \"text\", \n \"IsActive\": false \n} \n```" provider: vtex method: GET path: "/api/catalog/pvt/skuservice/{skuServiceId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuServiceId: { type: "integer" } } required: ["Accept", "Content-Type", "skuServiceId"] 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." } } } }