action vtex_product_and_sku_ids { label: "Get Product and SKU IDs" description: "Retrieves the IDs of products and SKUs. \n> 📘 Onboarding guide \n> \n> Check the new [Catalog onboarding guide](https://developers.vtex.com/vtex-rest-api/docs/catalog-overview). We created this guide to improve the onboarding experience for developers at VTEX. It assembles all documentation on our Developer Portal about Catalog and is organized by focusing on the developer's journey." provider: vtex method: GET path: "/api/catalog_system/pvt/products/GetProductAndSkuIds" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } _from: { type: "integer" format: "int32" } _to: { type: "integer" format: "int32" } categoryId: { type: "integer" format: "int32" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" description: "Object composed by Product IDs and SKU IDs, where the parent ID is from Products and the SKU IDs are the Child IDs." properties: { "Product ID": { type: "array" description: "Array with SKU IDs of a certain product." properties: { "SKU ID.": { type: "integer" description: "Product SKU ID." } } items: { type: "object" } } } } range: { type: "object" description: "Object with information about the product and SKUs list." properties: { from: { type: "integer" description: "Initial product ID." } to: { type: "integer" description: "Final product ID." } total: { type: "integer" description: "Total quantity of SKUs." } } } } } }