Skip to content

Get all staff members

Request

Get all Staff Members.

Security
bearerToken
curl -i -X GET \
  https://api-v2.dash.app/staff-members \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
Array [
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" } ]