Skip to main content
POST
/
api
/
v1
/
admin
/
email
/
templates
/
{template_id}
/
test
Send Test Email
curl --request POST \
  --url https://api.example.com/api/v1/admin/email/templates/{template_id}/test \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipient_email": "[email protected]",
  "variables": {},
  "provider": "<string>"
}
'
{}

Headers

authorization
string | null

Path Parameters

template_id
string
required

Body

application/json

Request schema for sending a test email.

Attributes: recipient_email: Email address to send test email to. variables: Optional dictionary of variables for template rendering.

recipient_email
string<email>
required
variables
Variables · object
provider
string | null

Response

Successful Response

The response is of type Response Send Test Email Api V1 Admin Email Templates Template Id Test Post · object.