Skip to content

Create a staff member

Request

Create a new Staff Member. Staff Members can log in to any Dash account.

Security
bearerToken
Bodyapplication/jsonrequired
emailstringrequired

Email of the StaffMember

Example:"some-staff-name@dash.app"
curl -i -X POST \
  https://api-v2.dash.app/staff-members \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "some-staff-name@dash.app"
  }'

Responses

Success

Bodyapplication/json
idstringrequired

The unique ID of the StaffMember

Example:"55f9964c-095d-4b8b-bb5e-4118d2e76ad0"
emailstringrequired

Email of the StaffMember

Example:"some-staff-name@dash.app"
Response
{ "id": "55f9964c-095d-4b8b-bb5e-4118d2e76ad0", "email": "some-staff-name@dash.app" }