Skip to main content
POST
/
contacts
/
{id}
/
send-direct-email
Send a direct email to a contact
curl --request POST \
  --url https://api.reply.io/v3/contacts/{id}/send-direct-email \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "subject": "<string>",
  "body": "<string>",
  "emailAccountId": 123
}
'
{
  "status": "New",
  "messageId": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Contact ID

Body

application/json
subject
string
required

Email subject line

body
string
required

Email body (HTML)

emailAccountId
integer | null

Email account ID to send from. If not provided, uses the default account.

Response

Email sent successfully

status
enum<string>

Sending status

Available options:
New,
Sent
messageId
string | null

Message ID of the sent email