Webmail
The email domains resource is used to create the main email record for a domain (i.e. customerdomain.com) in which Email mailboxes will be created.
A email domain object contains the following fields
Attribute | Type | Description |
---|---|---|
id | integer | Unique id of the email domain |
domain | string | Domain for the email domain (i.e. customerdomain.com) |
{
"id": 12345,
"domain": "customerdomain.com"
}
POST /api/v2/email_domain/
List all email domains under an instance
GET /api/v2/email_domain/
The email mailboxes resource is used to create the individual email mailboxes under an Email domain (example: [email protected])
Attribute | Type | Description |
---|---|---|
id | integer | Unique ID for the email mailbox |
domain_id | integer | Email domain ID |
name | string | Mailbox name under the domain. Example: an email of [email protected] would have a name value of "johndoe" |
{
"id": 54321,
"domain_id": 12345,
"name": "johndoe"
}
POST /api/v2/email_mailbox/
List all the email mailboxes under a domain
GET /api/v2/email_mailbox/?domain=customerdomain.com
DELETE /api/v2/email_mailbox/:email_mailbox_id/
Last modified 11mo ago