This section provides an overview of the /en/developer/api_endpoints/users_update endpoint. It allows you to update user information in the system.

Endpoint Details

  • URL: /en/developer/api_endpoints/users_update
  • Method: PUT
  • Description: Updates the information of a specific user.

Request Format

The request must include the user's ID and the information to be updated. The following parameters are required:

  • user_id: The unique identifier for the user.
  • email: (Optional) The user's email address.
  • password: (Optional) The user's password. If provided, the existing password will be reset.
  • full_name: (Optional) The user's full name.
  • phone_number: (Optional) The user's phone number.

Example Request

{
  "user_id": "12345",
  "email": "john.doe@example.com",
  "password": "new_password",
  "full_name": "John Doe",
  "phone_number": "+1234567890"
}

Response

A successful update will return a 200 OK status code. If the update fails, an error message will be provided.

Related Resources

For more information on user management and other API endpoints, please visit the Developer Documentation.

User Management