Skip to content

Create a platform user

Request

Create a new Platform User

Security
bearerToken
Bodyapplication/jsonrequired
emailstringrequired

The email address of the new user

Example:"ken.hasselback@gmail.com"
passwordstringrequired

The password of the new user

Example:"password"
firstNamestring or null

The first name of the new user

Example:"Ken"
lastNamestring or null

The last name of the new user

Example:"Hasselback"
curl -i -X POST \
  https://api-v2.dash.app/platform/users \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "ken.hasselback@gmail.com",
    "password": "password",
    "firstName": "Ken",
    "lastName": "Hasselback"
  }'

Responses

Success

Response
No content