Mail: Forwarders
Create forwarder
Create a forwarder from the given mailbox to the destination address. The destination receives a confirmation email and forwarding becomes active only after it is confirmed.
post/api/mail/v1/mailboxes/{mailboxId}/forwarders
Path parameters
mailboxIdstring required
Example:AC1a2b3c4d5e6f7g
Mailbox resource ID
Request body
Example request
{
"destination": "jane@example.org"
}Response
Created response
Example response
{
"id": "FW1a2b3c4d5e6f7g",
"mailbox": {
"id": "AC1a2b3c4d5e6f7g",
"address": "user@example.com"
},
"destination": "jane@example.org",
"is_keep_copy_enabled": true,
"is_active": true,
"is_confirmed": true,
"created_at": "2026-07-24T12:00:00Z",
"updated_at": "2026-07-24T12:00:00Z"
}