action vtex_sku_idlistby_ref_idlist { label: "Retrieve SKU ID list by Reference ID list" description: "Receives a list of Reference IDs and returns a list with the corresponding SKU IDs. \n \n>⚠️ The list of Reference IDs in the request body cannot have repeated Reference IDs, or the API will return an error 500. \n \n## Request body example \n \n```json \n[ \n \"123\", \n \"D25133K-B2\", \n \"14-556\", \n \"DCF880L2-BR\" \n] \n``` \n \n### Response body example \n \n```json \n{ \n \"123\": \"435\", \n \"D25133K-B2\": \"4351\", \n \"14-556\": \"3155\", \n \"DCF880L2-BR\": \"4500\" \n} \n```" provider: vtex method: POST path: "/api/catalog_system/pub/sku/stockkeepingunitidsbyrefids" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "object" description: "Object composed by a list of SKU IDs related to each Reference ID list searched. Structure: \"{RefId}\": \"{SkuId}\"." } }