The User resource contains information about a user in Dash such as their email address and their name (if provided).
- Productionhttps://api-v2.dash.app/users
- Staginghttps://api-v2.dashstaging.app/users
- ADMIN
- IN_GROUPS
curl -i -X POST \
https://api-v2.dash.app/users \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"type": "ADMIN",
"email": "john.smith@gmail.com",
"welcomeMessage": "You have been invited to join Dash — a tool for managing images, videos and more."
}'Response
{ "result": { "type": "ACTIVE_ACCOUNT_USER", "accountId": "cfb665ca-ce35-4418-b9d5-70ee815db4bd", "id": "google-oauth2|110955770826801837334", "email": "john.smith@gmail.com", "permissions": { … }, "name": "Ken Hassleback", "firstName": "Ken", "lastName": "Hassleback", "picture": "https://example.com/john-smith-picture.jpg", "hasUploadedProfilePicture": true, "lastLogin": "2021-02-16T16:21:58.640+00:00" }, "permittedActions": [ { … } ] }