Skip to main content
POST
/
v3
/
email-templates
/
{id}
/
send-test
Send a test email
curl --request POST \
  --url https://api.reply.io/v3/email-templates/{id}/send-test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "test@example.com",
  "emailAccountId": 100
}
'
{
  "title": "Something went wrong",
  "status": 400,
  "detail": "Failed to send test email",
  "errorCode": 11
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Email template ID to send

Body

application/json

Request body for sending a test email using a template.

email
string<email>
required

Email address to send the test email to

emailAccountId
integer<int64>
required

ID of the email account to send the test email from

Required range: x >= 1

Response

Test email sent successfully