API Docs / Operations / Email - Mailbox / Update Draft

Update Draft

PATCH /tenants/{tenant}/email-configs/{code}/drafts/{messageId}

Saves changes to an existing synced draft via the email provider. The configuration must have ReadEnabled set to true. Every field is the draft's new full content, not an override — omit Attachments to leave the draft's existing attachments untouched. 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)
{
  "subject": "string",
  "htmlBody": "string",
  "plainTextBody": "string",
  "toRecipients": [
    {
      "email": "...",
      "name": "..."
    }
  ],
  "ccRecipients": [
    {
      "email": "...",
      "name": "..."
    }
  ]
}

Responses

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