Skip to content

send test email

POST
/api/v1/workspaces/{workspace_id}/test_emails
curl --request POST \
--url https://example.com/%7B%7Bapp_url%7D/api/v1/workspaces/1/test_emails \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "recipient_ids": [ 1 ], "test_list_ids": [ 1 ], "conditional_selections": [ { "conditional_id": 12345, "mode": "all", "branch_key": "gold" } ], "email_id": 1, "locale": "ar-SA" }'

Sends a test email.

workspace_id
required
integer

Workspace ID

Media typeapplication/json
object
recipient_ids
required

IDs of users to send the test email to.

Array<integer>
test_list_ids

IDs of test lists to send the test email to.

Array<integer>
conditional_selections
required

Conditional branch selections to use when rendering the test email.

Array<object>
object
conditional_id
required
integer
Example
12345
mode
required
string
Allowed values: all none branch
Example
branch
branch_key
string
nullable
Example
gold
email_id
required
integer
locale
required
string
Allowed values: ar-SA bn-BD bn-IN ca-ES cs-CZ da-DK de-AT de-CH de-DE el-GR en-AU en-CA en-GB en-IE en-IN en-NZ en-US en-ZA es-AR es-CL es-CO es-ES es-MX es-US fi-FI fr-BE fr-CA fr-CH fr-FR he-IL hi-IN hu-HU id-ID it-CH it-IT ja-JP ko-KR nl-BE nl-NL no-NO pl-PL pt-BR pt-PT ro-RO ru-RU sk-SK sv-SE ta-IN ta-LK th-TH tr-TR zh-CN zh-HK
Example
en-US

Successful

Media typeapplication/json
object
id
required
integer
email_id
required
integer
locale
string
organization_id
required
integer
recipient_ids
required
Array<integer>
test_list_ids
required
Array<integer>
conditional_selections
required
Array<object>
object
conditional_id
required
integer
mode
required
string
Allowed values: all none branch
branch_key
string
nullable
created_at
required
string format: date-time
updated_at
required
string format: date-time
Example
{
"id": 12345,
"email_id": 12345,
"locale": "en-US",
"organization_id": 12345,
"recipient_ids": [
12345
],
"test_list_ids": [
12345
],
"conditional_selections": [
{
"conditional_id": 12345,
"mode": "all",
"branch_key": "gold"
}
],
"created_at": "2023-08-23T10:30:00.000Z",
"updated_at": "2023-08-23T10:30:00.000Z"
}

Unauthorized

Media typeapplication/json
object
message
required
string
Example
{
"message": "Record not found"
}

Forbidden

Media typeapplication/json
object
message
required
string
Example
{
"message": "Record not found"
}

Unprocessable Entity

Media typeapplication/json
object
message
required
string
errors
required
object
key
additional properties
Array<string>
Example
{
"errors": {
"username": [
"Username is required.",
"Username must be unique."
],
"email": [
"Invalid email format."
]
}
}