Skip to content
On this page

Drop Products

On this page, you can see all endpoints related to the Seller's Drop products

Dataset

FieldDescription
idThe unique identifier of the drop product.
nameThe drop product name.
skuThe drop product sku.
up_sell_and_backup_prices.quantityThe quantity of the up-sell
up_sell_and_backup_prices.priceThe price oof the up-sell.
up_sell_and_backup_prices.backup_priceThe backup price of the up-sell.
product_costThe drop product cost.
currencyThe drop product currency.
quantityThe drop product available quantity.
projectThe project of drop product stock.
countryThe country of drop product stock.
country_iso_codeThe country iso code alpha 2 of drop product stock.
media.default_imageThe default image of drop product.
media.imagesThe images of drop product.
media.videosThe videos of drop product.
media.landing_pagesThe landing pages of drop product.
relatedThe related drop products.
created_atThe 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

Show Drop product

Retrieve a Drop product.

Endpoint

/seller/drop-products/{id}
1

Method GET

Parameters

NameTypeDescriptionRequired
idstringThe 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