Skip to main content
PATCH
/
api
/
public
/
buyer
/
v1
/
users
/
{id}
Updates a user
curl --request PATCH \
  --url https://app.chemcloud.com.au/api/public/buyer/v1/users/{id} \
  --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

Path Parameters

id
string
required

Body

application/json
first_name
string
Example:

"John"

last_name
string
Example:

"Smith"

email
string
Example:

"hello@chemcloud.com.au"

Response

User updated