Update a user’s details such as name, email, and password
cURL
curl --request PUT \ --url https://api.fluxend.app/users/{userUUID} \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data '{ "bio": "<string>" }'
{ "content": { "bio": "<string>", "createdAt": "<string>", "email": "<string>", "organizationUuid": "<string>", "roleId": 123, "status": "<string>", "updatedAt": "<string>", "username": "<string>", "uuid": "<string>" }, "errors": [ "<string>" ], "metadata": "<any>", "success": true }
Bearer Token
User UUID
User details
The body is of type object.
object
User updated
The response is of type object.