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.
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.
API Token authentication
Mailbox resource ID
AC1a2b3c4d5e6f7gEmail address the messages will be forwarded to
jane@example.orgWhether to keep a copy of forwarded messages in the mailbox. Defaults to false.
falseCreated response
Unique forwarder identifier
FW1a2b3c4d5e6f7gEmail address the messages are forwarded to
jane@example.orgWhether a copy of forwarded messages is kept in the mailbox
trueWhether the forwarder is active
trueWhether the destination address has confirmed the forwarding
true2026-07-24T12:00:00Z2026-07-24T12:00:00ZError response
Unauthenticated response
Error response
Error response
Error response
Error response
POST /api/mail/v1/mailboxes/{mailboxId}/forwarders HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 63
{
"destination": "jane@example.org",
"is_keep_copy_enabled": false
}{
"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"
}Last updated
Was this helpful?