English
Access Manager
cURL
curl --request PATCH \ --url http://127.0.0.1:4001/v1/users/{id} \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "firstName": "John", "groups": [ "admin-group", "midaz-viewer-group", "midaz-contributor-group" ], "lastName": "Doe" } '
204
Use this endpoint to update a user’s information, such as name, email, or group assignments.
The unique identifier of the user you want to retrieve.
Information used to update a user's information.
User's email address.
User's first name.
User's last name.
Array of user role groups IDs. Role groups IDs can be retrieved through the List Groups endpoint.
If the request is successful, you will receive an empty response.