/unibox/emails/{emailId}/forward Authentication
Send your organization API key as a Bearer credential.
Authorization: Bearer YOUR_API_KEY Path parameters
emailId number required ID of the Unibox email to forward
12345 Body
application/json Forward email data
from_email string required Connected sender email address
sales@company.com to_email string required New primary recipient email address
recipient@example.com message string Optional comment placed before the forwarded email
Please take a look at this email. Response
application/json Email forwarded successfully
id number required Unique ID of the email record
123 thread_id number required ID of the thread this email belongs to
999 date_sent string required Date and time when the email was sent
2025-12-08T12:00:00.000Z from_name string required Name of the sender
John Doe from_email string required Sender email address
john@example.com to_email string required Recipient email address
lead@example.com body string required Body content of the email
Hello, this is message body subject string required Subject of the email
Subject text is_our_email boolean required Indicates whether this email was sent by our system
false is_new boolean required Indicates whether this email is marked as new/unread
true message_id string required Unique Message-ID from email headers
<message-id@mail.com> cc_email string required Carbon copy (CC) email addresses
cc@example.com attachments object[] required Attachments belonging to this email. Empty array if the email has no attachments.
Show child attributes
attachments.id number required Unique ID of the attachment
1 attachments.unibox_email_id number required ID of the email this attachment belongs to
123 attachments.type number required Attachment type. 1 — Generic, 2 — Personalised
1 attachments.ext string required File extension (without the leading dot)
pdf attachments.original_filename string required Original filename as uploaded by the user
proposal.pdf attachments.saving_filename string required Internal storage filename used by the system
a1b2c3d4-5678-90ab-cdef-1234567890ab.pdf Invalid request body (e.g. missing required fields, or invalid field values)
message string[] required List of detailed validation or business error messages
["Name cannot be empty", "Field must be greater than 0"] error string required Short error description
Bad Request statusCode number required HTTP status code of the error
400 This request is unauthorized (either the Authorization header is missing or invalid, or the API key has been revoked)
message string[] required List of messages explaining why the request was unauthorized
["User is not authorized", "Invalid API key"] error string required Short error description
Unauthorized statusCode number required HTTP status code of the error
401 Source email or sender account not found
message string[] required ["Campaign not found"] error string required Not Found statusCode number required 404 You have exceeded the rate limit. Please check the rate limit docs for more information.
message string[] required List of messages explaining the rate limiting issue
["Too many requests, please try again later"] error string required Short error description
Too Many Requests statusCode number required HTTP status code of the error
429