Appearance
Products
On this page, you can see all endpoints related to the Seller's products
Dataset
Field | Description |
---|---|
id | The unique identifier of the product. |
sku | The product sku. |
name | The product name. |
weight | The product weight. |
weight_net | The weight net of product. |
price | The product price. |
url | The product url |
currency | The product currency. |
status | The product status, it can be: Enabled , Disabled . |
stocks.project | The project name of stock. |
stocks.country | The stock country name. |
stocks.country_iso_code | The stock country iso code. |
stocks.quantity | The stock quantity. |
status | The product status, it can be: Enabled , Disabled |
created_at | The product creation datetime |
Get All products
Retrieve a list of all products.
Endpoint
/seller/products
1
Method GET
Parameters
None.
Response
json
{
"status": "success",
"data": [
{
"id": ...,
"sku": "...",
"name": "...",
"weight": ...,
"weight_net": ...,
"price": ...,
"url": "...",
"currency": "...",
"status": "",
"stocks": [
{
"project": "...",
"country": "...",
"country_is_code": "...",
"quantity": ...
},
...
],
"created_at": "..."
},
...
],
"meta": {
"pagination": {...}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Show product
Retrieve a product.
Endpoint
/seller/products/{id}
1
Method GET
Parameters
Name | Type | Description | Required |
---|---|---|---|
id | string | The unique identifier of the product to retrieve. | Yes |
Response
json
{
"status": "success",
"data": {
"id": ...,
"sku": "...",
"name": "...",
"weight": ...,
"weight_net": ...,
"price": ...,
"url": "...",
"currency": "...",
"status": "",
"stocks": [
{
"project": "...",
"country": "...",
"country_is_code": "...",
"quantity": ...
},
...
],
"created_at": "..."
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24