v1
latestOpenAPI 3.1.02026-07-2617125852.3 KBEmail
Forward an email
Forward an existing email to another recipient. You must specify the reply_to_uuid field, which represents the id of an existing email returned by the /emails endpoints. By default only the provided body is sent. Set include_original_body to true to append the original email context.
Requires one of the following scopes: emails:create, emails:all, all:create, all:all
post/api/v2/emails/forward
Request body
Example request
{
"eaccount": "jondoe@example.com",
"reply_to_uuid": "123e4567-e89b-12d3-a456-426614174000",
"to_address_email_list": "recipient@example.com",
"subject": "Fwd: Interesting update",
"body": {
"html": "<p>Sharing this with you.</p>",
"text": "Sharing this with you."
},
"cc_address_email_list": "cc@example.com",
"bcc_address_email_list": "bcc@example.com",
"reply_to": "reply@example.com",
"forwarded_attachments": "[{\"filename\":\"attachment.pdf\",\"url\":\"https://cdn.instantly.ai/example-attachment/file.pdf\"}]",
"include_original_body": true,
"assigned_to": "019f94cd-ae84-794d-bc21-5011a496393a"
}Response
The requested Email
Example response
{
"id": "019f94cd-83dc-7a33-bb74-3dab6085f19c",
"timestamp_created": "2026-07-24T15:45:24.444Z",
"timestamp_email": "2026-07-24T15:45:24.444Z",
"message_id": "<example123@mail.gmail.com>",
"subject": "Re: Your inquiry",
"from_address_email": "sender@example.com",
"to_address_email_list": "recipient@example.com",
"cc_address_email_list": "cc@example.com",
"bcc_address_email_list": "bcc@example.com",
"reply_to": "replyto@example.com",
"body": {
"text": "This is a test email",
"html": "<p>This is a test email</p>"
},
"organization_id": "019f94cd-83dc-7a33-bb74-3dac64c56a27",
"campaign_id": "019f94cd-83dc-7a33-bb74-3daded4fd3d0",
"subsequence_id": "019f94cd-83dc-7a33-bb74-3daeb18d1836",
"list_id": "019f94cd-83dc-7a33-bb74-3daf4f6d254a",
"lead": "jondoe@example.com",
"lead_id": "019f94cd-83dc-7a33-bb74-3db0055cb74b",
"eaccount": "eaccount-123",
"ue_type": 3,
"step": "step-123",
"is_unread": 1,
"reminder_ts": "2026-07-24T15:45:24.444Z",
"ai_interest_value": 0.75,
"ai_assisted": 1,
"is_focused": 1,
"thread_id": "019f94cd-83dc-7a33-bb74-3db1037a0918",
"content_preview": "This is a preview of the email content.",
"attachment_json": {
"files": [
{
"filename": "attachment",
"size": 1927,
"type": "text/css",
"url": "https://cdn.instantly.ai/example-attachment/",
"error": null
}
]
},
"ai_agent_id": "019f94cd-83dc-7a33-bb74-3db29c8a7faf"
}