POST
/
customers
/
{customerID}
/
users
curl --request POST \
  --url https://api.joinworth.com/auth/api/v1/customers/{customerID}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "first_name": "T test",
  "last_name": "Tate",
  "email": "test@email.com",
  "mobile": "+14343342348",
  "subrole": {
    "id": "cdc69893-6d14-4ba5-a8a8-a0ba79f966b0",
    "label": "Cobra Company_CRO",
    "code": "cro"
  }
}'
{
  "status": "success",
  "message": "Customer user created.",
  "data": {
    "user_id": "053cfb4b-2073-4ede-afc0-26579bb3e1b8"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

customerID
string
required
Example:

"22f210e4-4455-4107-b132-97e8478546ea"

Body

application/json
first_name
string
required
last_name
string
required
email
string
required
mobile
string
required
subrole
object
required
Example:
{
  "id": "9f0cda5a-9f9b-47db-9b7d-d1421448deb5",
  "code": "admin",
  "label": "Admin"
}

Response

200
application/json; charset=utf-8
OK
status
string
required
message
string
required
data
object
required
Example:
{
  "user_id": "336bfa2d-6019-4435-9036-020e58f4d3e6"
}