POST
/
v1
/
supplier
curl --request POST \
  --url https://app.variable.global/api/v1/supplier \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "syncId": "sync123",
  "name": "Supplier Name"
}'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "syncId": "sync123",
  "name": "Supplier Name",
  "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.

Body

application/json
name
string
required
Example:

"Supplier Name"

uuid
string
syncId
string

An identifier to use when syncing data with other systems

Example:

"sync123"

Response

200
application/json
A supplier
uuid
string
syncId
string

An identifier to use when syncing data with other systems

Example:

"sync123"

name
string
Example:

"Supplier Name"

connected
boolean
Example:

true

image
string
Example:

"https://app.variable.global/uploads/image.jpg"