Mail: Aliases
Create alias
Create an alias for the given mailbox. The alias address is formed from the given local part and the domain of the mailbox. Messages sent to the alias are delivered to the mailbox.
post/api/mail/v1/mailboxes/{mailboxId}/aliases
Path parameters
mailboxIdstring required
Example:AC1a2b3c4d5e6f7g
Mailbox resource ID
Request body
Example request
{
"local_part": "info"
}Response
Created response
Example response
{
"id": "AA1a2b3c4d5e6f7g",
"address": "info@example.com",
"mailbox": {
"id": "AC1a2b3c4d5e6f7g",
"address": "john@example.com"
},
"is_active": true,
"created_at": "2026-07-27T12:00:00Z",
"updated_at": "2026-07-27T12:00:00Z"
}