GET
/
v1
/
supplier
curl --request GET \
  --url https://app.variable.global/api/v1/supplier \
  --header 'Authorization: Bearer <token>'
{
  "count": 1500,
  "page": 1,
  "pageSize": 100,
  "data": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "Supplier Name",
      "syncId": "sync123",
      "connected": true,
      "image": "https://app.variable.global/uploads/image.jpg"
    }
  ]
}
Requires permission:

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
A list of suppliers
count
integer
Example:

1500

page
integer
Example:

1

pageSize
integer
Example:

100

data
object[]