Appearance
Drop Products
On this page, you can see all endpoints related to the Seller's Drop products
Dataset
Field | Description |
---|---|
id | The unique identifier of the drop product. |
name | The drop product name. |
sku | The drop product sku. |
up_sell_and_backup_prices.quantity | The quantity of the up-sell |
up_sell_and_backup_prices.price | The price oof the up-sell. |
up_sell_and_backup_prices.backup_price | The backup price of the up-sell. |
product_cost | The drop product cost. |
currency | The drop product currency. |
quantity | The drop product available quantity. |
project | The project of drop product stock. |
country | The country of drop product stock. |
country_iso_code | The country iso code alpha 2 of drop product stock. |
media.default_image | The default image of drop product. |
media.images | The images of drop product. |
media.videos | The videos of drop product. |
media.landing_pages | The landing pages of drop product. |
related | The related drop products. |
created_at | The product creation datetime. |
Get All Drop products
Retrieve a list of all Drop products.
Endpoint
/seller/drop-products
1
Method GET
Query Parameters
- sku : Filter drop products by sku.
- name : Filter drop products by name.
Request Example
/seller/drop-products?sku=ABC123&...
1
Response
json
{
"status": "success",
"data": [
{
"id": ...,
"name": "...",
"sku": "...",
"up_sell_and_backup_prices": [
{
"quantity": "...",
"price": "...",
"backup_price": "..."
},
...
],
"product_cost": "...",
"currency": "...",
"quantity": ...,
"project": "...",
"country": "...",
"country_iso_code": "...",
"related": [
{
"id": ...,
"name": "",
"country": "",
"image": ""
}
],
"media": {
"default_image": "",
"images": {
"product_image_1": "",
"product_image_2": "",
...
},
"videos": {
"product_video_1": "",
"product_video_2": "",
...
},
"landing_pages": [
{
"link": "...",
"youcan_json": "..."
},
...
]
},
"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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Show Drop product
Retrieve a Drop product.
Endpoint
/seller/drop-products/{id}
1
Method GET
Parameters
Name | Type | Description | Required |
---|---|---|---|
id | string | The unique identifier of the drop product to retrieve. | Yes |
Response
json
{
"status": "success",
"data": {
"id": ...,
"name": "...",
"sku": "...",
"up_sell_and_backup_prices": [
{
"quantity": "...",
"price": "...",
"backup_price": "..."
},
...
],
"product_cost": "...",
"currency": "...",
"quantity": ...,
"project": "...",
"country": "...",
"country_iso_code": "...",
"related": [
{
"id": ...,
"name": "",
"country": "",
"image": ""
}
],
"media": {
"default_image": "",
"images": {
"product_image_1": "",
"product_image_2": "",
...
},
"videos": {
"product_video_1": "",
"product_video_2": "",
...
},
"landing_pages": [
{
"link": "...",
"youcan_json": "..."
},
...
]
},
"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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51