Skip to content

Update a User

Endpoint used to update an existing user in Toolzz Chat.

Terminal window
curl --request PATCH \
--url 'https://chat.toolzz.ai/platform/api/v1/users/{user_id}' \
--header 'Authorization: Bearer <token>'
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
user_idstringThe ID of the user to update.Yes
ParameterTypeDescriptionRequired
namestringNew name for the user.No
emailstringNew email for the user.No

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request.