get https://{accountName}.{environment}.com.br/api/catalog_system/pvt/sku/stockkeepingunitids
Retrieves the IDs of all SKUs in the store. Presents the result with page size and pagination.
Query params
Attribute | Type | Description |
---|---|---|
page | integer | Replace this variable with the result page number that you need retrieves SKU ID |
pagesize | integer | Replace this variable with the page size that you need retrieves SKU ID, maximum value 1000 |
For example, you need to get all SKU IDs from page 7
with a page size 50
.
You will have to replace de variable page
for 7
and the variable pagesize
to 50
:
https://{{accountName}}.{{environment}}.com.br/api/catalog_system/pvt/sku/stockkeepingunitids?page=7&pagesize=50
Response object has the following properties:
Attribute | Type | Description |
---|---|---|
skuIds | array | Array composed by SKU IDs, in the search context |
Response body example:
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
]