For the complete documentation index, see llms.txt. This page is also available as Markdown.

API Email - Create

Create Emails New/Reply

POST /v2/email/create

Body

Param
Type
Description

api_key

string

required

from_address

string

required

uid

string

Email uid being responded to

subject

string

Subject if no uid is provided [New Email]

body

string

HTML or Plain Text required

to_address

string

To Address if no uid is provided [New Email]

cc

array

Email Addresses

bcc

array

Email Addresses

headers

array

Key must start with sense_

Example Payload

{
  "api_key": "",
  "from_address": "staffmember@email.com",
  "to_address": "client@email.com",
  "cc": [
    "another@email.com"
  ],
  "subject": "Example Subjext",
  "body": "HTML or Plain Text here",
  "headers": [
    "sense_client_id": 123456
  ]
}
{
  "api_key": "",
  "from_address": "staffmember@email.com",
  "uid": "UNIQUE_ID_HERE",
  "body": "HTML or Plain Text here"
}

Response

Last updated