cURL
curl --request POST \ --url https://your-instance.example.com/api/email/messages/draft \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "accountId": "<string>", "to": "<string>", "subject": "<string>", "cc": [ "<string>" ], "bcc": [ "<string>" ] } '
{}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
String or array of strings
Draft created
Generic response envelope. Endpoint-specific fields are intentionally open.