action vtex_sku_idby_ref_id { label: "Get SKU ID by Reference ID" description: "Retrieves an SKU ID by the SKU's Reference ID. \n \n### Response body example \n \n```json \n\"310118450\" \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/sku/stockkeepingunitidbyrefid/{refId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } refId: { type: "string" } } required: ["Accept", "Content-Type", "refId"] additionalProperties: false } output: { type: "string" description: "SKU ID." } }