Skip to content

Update a user

Request

Patch a User

Security
bearerToken
Path
idstringrequired

The unique ID of the User or the User's email

Bodyapplication/jsonrequired
typestringrequired
Value:"ADMIN"
Discriminator
curl -i -X PATCH \
  'https://api-v2.dash.app/users/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "type": "ADMIN"
  }'

Responses

Success

Bodyapplication/json
resultanyrequired
permittedActionsArray of objectsrequired
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": [ {} ] }