Skip to main content
POST
/
api
/
public
/
buyer
/
v1
/
users
Creates a user
curl --request POST \
  --url https://app.chemcloud.com.au/api/public/buyer/v1/users \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "first_name": "John",
  "last_name": "Smith",
  "email": "hello@chemcloud.com.au"
}
'

Authorizations

X-API-KEY
string
header
required

Body

application/json
first_name
string
required
Example:

"John"

last_name
string
required
Example:

"Smith"

email
string
required
Example:

"hello@chemcloud.com.au"

Response

201

User created