Skip to content
On this page

Products

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

Dataset

FieldDescription
idThe unique identifier of the product.
skuThe product sku.
nameThe product name.
weightThe product weight.
weight_netThe weight net of product.
priceThe product price.
urlThe product url
currencyThe product currency.
statusThe product status, it can be: Enabled, Disabled.
stocks.projectThe project name of stock.
stocks.countryThe stock country name.
stocks.country_iso_codeThe stock country iso code.
stocks.quantityThe stock quantity.
statusThe product status, it can be: Enabled, Disabled
created_atThe 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

Show product

Retrieve a product.

Endpoint

/seller/products/{id}
1

Method GET

Parameters

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