Admin.mail.zoho

admin.mail.zoho is a Zoho Mail API endpoint that allows you to manage email accounts and settings for your Zoho Mail domain.

Here are some of the actions you can perform using this API endpoint:

  1. Create a new email account: You can create a new email account for your domain using the POST method. You'll need to provide the email address, password, and other details.
  2. Retrieve email account information: You can retrieve information about an existing email account using the GET method. You can specify the email address or the account ID to retrieve the information.
  3. Update email account settings: You can update the settings for an existing email account using the PUT method. You can specify the email address or the account ID to update the settings.
  4. Delete an email account: You can delete an existing email account using the DELETE method. You'll need to specify the email address or the account ID to delete the account.

Here's an example of the API endpoint URL:

https://www.zoho.com/mail/api/admin/mail/{domain}/accounts/{email}

Replace {domain} with your Zoho Mail domain and {email} with the email address you want to manage.

Here's an example of the API request headers:

Authorization: Zoho-Api-Key YOUR_API_KEY
Content-Type: application/json

Replace YOUR_API_KEY with your actual Zoho Mail API key.

Here's an example of the API request body for creating a new email account:

{
  "email": "[email protected]",
  "password": "newpassword",
  "display_name": "New User",
  "quota": 100
}

This is just a basic example, and you may need to provide additional information or parameters depending on your specific use case.