GET
/
v1
/
brand
/
list
curl --request GET \
  --url https://api.sendo.dev/v1/brand/list \
  --header 'Authorization: Bearer <token>'
{
  "brands": [
    {
      "id": "h4cQ2gls",
      "createdAt": "2023-12-12T12:33:33.630Z",
      "updatedAt": "2023-12-12T12:33:33.630Z",
      "status": "VERIFIED",
      ...
    },
    {
      "id": "A8wm4k2s",
      "createdAt": "2023-12-07T12:33:33.630Z",
      "updatedAt": "2023-12-08T12:33:33.630Z",
      "status": "VETTED",
      ...
    }
    And so on...
  ]
}

This endpoint lists your submitted brands. Brands in DRAFT status will not be returned. Click here for more information about brands.

URL Params

limit
number

The number of brands to return (default 10).

skip
number

The number of brands to skip (i.e. offset).

Response

brands
[brand]

An array of brand objects returned.

error
string

Error message if the request fails.

{
  "brands": [
    {
      "id": "h4cQ2gls",
      "createdAt": "2023-12-12T12:33:33.630Z",
      "updatedAt": "2023-12-12T12:33:33.630Z",
      "status": "VERIFIED",
      ...
    },
    {
      "id": "A8wm4k2s",
      "createdAt": "2023-12-07T12:33:33.630Z",
      "updatedAt": "2023-12-08T12:33:33.630Z",
      "status": "VETTED",
      ...
    }
    And so on...
  ]
}