Skip to main content
POST
/
api
/
public
/
buyer
/
v1
/
suppliers
/
{supplier_id}
/
users
Creates a user for a supplier
curl --request POST \
  --url https://app.chemcloud.com.au/api/public/buyer/v1/suppliers/{supplier_id}/users \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "first_name": "John",
  "last_name": "Smith",
  "contact_email": "hello@chemcloud.com.au"
}
'
{
  "id": "99999a99-b888-777c-666d-55555555555e",
  "first_name": "John",
  "last_name": "Smith",
  "contact_email": "hello@chemcloud.com.au",
  "supplier_profile_id": "99999a99-b888-777c-666d-55555555555e",
  "created_at": "2025-12-31T23:13:11.862Z",
  "updated_at": "2025-12-31T23:13:11.862Z"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

supplier_id
string
required

Body

application/json
first_name
string
required
Example:

"John"

last_name
string
required
Example:

"Smith"

contact_email
string
required
Example:

"hello@chemcloud.com.au"

Response

Supplier user created

id
string<uuid>
Example:

"99999a99-b888-777c-666d-55555555555e"

first_name
string | null
Example:

"John"

last_name
string | null
Example:

"Smith"

contact_email
string
Example:

"hello@chemcloud.com.au"

supplier_profile_id
string<uuid>
Example:

"99999a99-b888-777c-666d-55555555555e"

created_at
string<date-time>
Example:

"2025-12-31T23:13:11.862Z"

updated_at
string<date-time>
Example:

"2025-12-31T23:13:11.862Z"