Update user by specifying id or email. Either id or email is required. If both are provided then an error is returned. The user must have a token with valid permissions.
Security
AuthorizationHeader
- Mock serverhttps://apidoc.authmind.com/_mock/v1/docs/v1/user
- https://apidoc.authmind.com/{{.Host}}/amapihttps://apidoc.authmind.com/{{.Host}}/amapi/v1/user
curl -i -X PATCH \
'https://apidoc.authmind.com/_mock/v1/docs/v1/user?email=string&id=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"email": "string",
"role": "string",
"old_password": "string",
"password": "string",
"locale": "string"
}'