action vtex_listall_skuids { label: "List all SKU IDs" description: "Retrieves the IDs of all SKUs in your store. Presents the results with page size and pagination. \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. \n \n### Response body example \n \n```json \n[ \n 1, \n 2, \n 3, \n 4, \n 5, \n 6, \n 7, \n 8, \n 9, \n 10 \n] \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/sku/stockkeepingunitids" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } } required: ["Accept", "Content-Type", "page", "pagesize"] additionalProperties: false } output: { type: "array" description: "Array composed by SKU IDs, in the search context." items: { type: "integer" format: "int32" description: "SKU ID." } } }