smartlead_create_automated_placement_test
Create automated email placement tests on a schedule to evaluate deliverability across spam filters, check link domains, and monitor inbox placement using Smart Delivery.
Instructions
Create an automated placement test that runs on a schedule using Smart Delivery.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all_email_sent_without_time_gap | Yes | Set true to send all emails simultaneously | |
campaign_id | Yes | Campaign ID for which you want to select the sequence to test | |
days | Yes | Days of the week to run the test (1-7, where 1 is Monday) | |
description | No | Description for your test to reference later | |
every_days | Yes | Frequency of how often to run a new test | |
folder_id | No | Folder ID to assign the test to | |
is_warmup | Yes | Set true to receive positive intent responses and move emails from spam to inbox | |
link_checker | Yes | Enable to check if domains for links in email body are blacklisted | |
min_time_btwn_emails | Yes | Time gap between each email from each mailbox (if time gap enabled) | |
min_time_unit | Yes | Time unit for the time gap (minutes, hours, days) | |
provider_ids | Yes | Array of provider IDs to send test emails to | |
schedule_start_time | Yes | Start date and time to schedule or run the test (ISO format) | |
sender_accounts | Yes | Array of email addresses to use as senders | |
sequence_mapping_id | Yes | The ID of the sequence or variant you would like to test | |
spam_filters | Yes | Array of spam filters to test across, e.g. ["spam_assassin"] | |
starHour | No | Test start time | |
test_end_date | Yes | End date to stop running your test (YYYY-MM-DD format) | |
test_name | Yes | Name of your test | |
tz | Yes | Timezone for scheduling |
Input Schema (JSON Schema)
{
"properties": {
"all_email_sent_without_time_gap": {
"description": "Set true to send all emails simultaneously",
"type": "boolean"
},
"campaign_id": {
"description": "Campaign ID for which you want to select the sequence to test",
"type": "integer"
},
"days": {
"description": "Days of the week to run the test (1-7, where 1 is Monday)",
"items": {
"type": "integer"
},
"type": "array"
},
"description": {
"description": "Description for your test to reference later",
"type": "string"
},
"every_days": {
"description": "Frequency of how often to run a new test",
"type": "integer"
},
"folder_id": {
"description": "Folder ID to assign the test to",
"type": "integer"
},
"is_warmup": {
"description": "Set true to receive positive intent responses and move emails from spam to inbox",
"type": "boolean"
},
"link_checker": {
"description": "Enable to check if domains for links in email body are blacklisted",
"type": "boolean"
},
"min_time_btwn_emails": {
"description": "Time gap between each email from each mailbox (if time gap enabled)",
"type": "integer"
},
"min_time_unit": {
"description": "Time unit for the time gap (minutes, hours, days)",
"type": "string"
},
"provider_ids": {
"description": "Array of provider IDs to send test emails to",
"items": {
"type": "integer"
},
"type": "array"
},
"schedule_start_time": {
"description": "Start date and time to schedule or run the test (ISO format)",
"type": "string"
},
"sender_accounts": {
"description": "Array of email addresses to use as senders",
"items": {
"type": "string"
},
"type": "array"
},
"sequence_mapping_id": {
"description": "The ID of the sequence or variant you would like to test",
"type": "integer"
},
"spam_filters": {
"description": "Array of spam filters to test across, e.g. [\"spam_assassin\"]",
"items": {
"type": "string"
},
"type": "array"
},
"starHour": {
"description": "Test start time",
"type": "string"
},
"test_end_date": {
"description": "End date to stop running your test (YYYY-MM-DD format)",
"type": "string"
},
"test_name": {
"description": "Name of your test",
"type": "string"
},
"tz": {
"description": "Timezone for scheduling",
"type": "string"
}
},
"required": [
"test_name",
"spam_filters",
"link_checker",
"campaign_id",
"sequence_mapping_id",
"provider_ids",
"sender_accounts",
"all_email_sent_without_time_gap",
"min_time_btwn_emails",
"min_time_unit",
"is_warmup",
"schedule_start_time",
"test_end_date",
"every_days",
"tz",
"days"
],
"type": "object"
}