SystemsX
  • SystemsX
  • Bridge
    • API Create Job
    • API Billing Usage
  • SENSE
    • API - Base URL
    • API Agents - List
    • API Call - Manual Upload
    • API Call - History
    • API Call - Metrics
    • Assist - Integration
    • API Assist - Load
    • API Assist - Functions
    • API Email - History
    • API Email - Create
  • GEO
    • Common - Encode
    • Common - Decode
    • Common - Neighbors
    • Common - Inside Polygon
Powered by GitBook
On this page
  1. SENSE

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

{
    "status": "success"
}
{
  "error": "Invalid request"
}
PreviousAPI Email - HistoryNextCommon - Encode

Last updated 6 months ago