Skip to main content
POST
/
v1
/
my
/
templates
/
{id}
/
send_test
Send a test email
curl --request POST \
  --url https://api.nitrosend.com/v1/my/templates/{id}/send_test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "contact_id": 123
}
'
{
  "sent": 123,
  "results": [
    {
      "email": "<string>",
      "success": true
    }
  ]
}

Authorizations

Authorization
string
header
required

API key (nskey_live_...) or JWT token. API key is checked first; if not found, falls back to Devise JWT authentication.

Path Parameters

id
integer
required

Body

application/json
email
string<email>
contact_id
integer

Response

Test email sent

sent
integer
results
object[]