How to change the password in zoho mail domain

To change the password in Zoho Mail domain, you can follow these steps:

Method 1: Change Password through Zoho Mail Web Interface

  1. Log in to your Zoho Mail account using your current password.
  2. Click on your profile picture or initials in the top right corner of the page.
  3. Click on "Settings" from the dropdown menu.
  4. Scroll down to the "Security" section.
  5. Click on "Change Password".
  6. Enter your current password, then enter and confirm your new password.
  7. Click "Save" to save the changes.

Method 2: Change Password through Zoho Control Panel

  1. Log in to the Zoho Control Panel using your Zoho Mail administrator credentials.
  2. Click on "Mail" from the top menu.
  3. Click on "Users" from the sub-menu.
  4. Select the user account you want to change the password for.
  5. Click on the "Edit" button next to the user account.
  6. Scroll down to the "Security" section.
  7. Click on "Change Password".
  8. Enter your current password, then enter and confirm your new password.
  9. Click "Save" to save the changes.

Method 3: Change Password using Zoho Mail API

You can also change the password using Zoho Mail API. You need to have the API key and the user ID of the account you want to change the password for.

Here is an example of how to change the password using Zoho Mail API:

curl -X POST \
  https://mail.zoho.com/api/v1/users/{user_id}/password \
  -H 'Authorization: Bearer {api_key}' \
  -H 'Content-Type: application/json' \
  -d '{"old_password": "{current_password}", "new_password": "{new_password}", "confirm_password": "{new_password}"}'

Replace {user_id} with the ID of the user account you want to change the password for, {api_key} with your Zoho Mail API key, {current_password} with the current password, and {new_password} with the new password you want to set.

Note: You need to have the necessary permissions and access to use the Zoho Mail API.