Get SKUs list
Description
Retrieves a list of SKUs.
Request URL
Method: POST
https://example.com/api/v1.1/market/sku/list
Request parameters
Parameter | Type | Example | Required | Description |
---|---|---|---|---|
token | string | "abcdefghijklmnqrstuvwxyz" | Yes | API token |
from_id | string | "2oDantiaiPtY-b7b41276360564d4" | No | The pointer to the next page. It is taken from the previous request, or passed empty for the first one. |
limit | int | 3 | No | SKU list limit |
Request example
- JSON
- XML
{
"token": "abcdefghijklmnqrstuvwxyz",
"from_id": "",
"limit": 3
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<from_id></from_id>
<limit>3</limit>
</xml>
Response example
- JSON
- XML
{
"error": 0,
"error_text": "",
"next_from_id": "L8PSdcsMmLq-6021b5621680598b",
"result": [
{
"name": "Xiaomi 11T 256GB",
"external_id": "xiaomi_11t_256gb"
},
{
"name": "Xiaomi 11T 128GB",
"external_id": "xiaomi_11t_128gb"
},
{
"name": "Apple iPhone 13 256GB",
"external_id": "iphone_13_256gb"
}
]
}
<xml>
<error>0</error>
<error_text></error_text>
<next_from_id>L8PSdcsMmLq-6021b5621680598b</next_from_id>
<result>
<name>Xiaomi 11T 256GB</name>
<external_id>xiaomi_11t_256gb</external_id>
</result>
<result>
<name>Xiaomi 11T 128 GB</name>
<external_id>xiaomi_11t_128gb</external_id>
</result>
<result>
<name>Apple iPhone 13 256GB</name>
<external_id>iphone_13_256gb</external_id>
</result>
</xml>
Response parameters
Parameter | Type | Description |
---|---|---|
error | int | Error code |
error_text | string | Error text |
next_from_id | string | The pointer must be passed in the next request to get another piece of data until the output of the result contains 0 lines of history. |
result | array | An array of received data on SKUs |