This section provides detailed information about the update-user
API endpoint in the User Management module. This API allows you to update user information in the system.
Endpoint
- URL:
/en/support-center/api-reference/user-management/update-user
- Method:
PUT
Request Parameters
- user_id: Unique identifier for the user.
- email: User's email address.
- first_name: User's first name.
- last_name: User's last name.
- password: User's password (optional, if changing).
- phone_number: User's phone number.
Request Example
{
"user_id": "12345",
"email": "john.doe@example.com",
"first_name": "John",
"last_name": "Doe",
"password": "newpassword123",
"phone_number": "+1234567890"
}
Response
- Status Code: 200 (OK) on successful update.
- Content: Updated user information.
Usage
To update a user's information, send a PUT
request to the /en/support-center/api-reference/user-management/update-user
endpoint with the necessary parameters.
For more information on API usage and best practices, please refer to our API Documentation.
Related Resources
User Management