API Docs / Operations / Email - Mailbox / Reply to Message

Reply to Message

POST /tenants/{tenant}/email-configs/{code}/messages/{messageId}/reply

Sends a reply to a specific mailbox message via the email provider. The configuration must have SendEnabled set to true. Set ReplyAll to true to reply to all original recipients, or provide explicit ToRecipients/CcRecipients to override. Supports attachments via the Attachments array. If the response includes ReconnectRequired=true, the OAuth connection needs to be re-authorised.

Parameters

NameTypeDescription
tenant* path string

The Tenant.Code

The Tenant.Code

code* path string
messageId* path string (uuid)

Request Body*

{
  "htmlBody": "string",
  "plainTextBody": "string",
  "replyAll": false,
  "toRecipients": [
    {
      "email": "...",
      "name": "..."
    }
  ],
  "ccRecipients": [
    {
      "email": "...",
      "name": "..."
    }
  ]
}

Responses

400 Bad Request
401 Unauthorized – Invalid or missing API key
404 Not Found