v1
latestOpenAPI 3.1.02026-07-247601.0 MBCreate a Sequence
This endpoint doesn't consume Apollo credits. Learn more about API pricing and credits.
<a href="https://knowledge.apollo.io/hc/en-us/articles/4409237165837-Sequences-Overview" target="_blank">Sequences</a> are outreach campaigns that sales teams use to reach out to contacts over a planned period of time.<br><br>Use the Create a Sequence endpoint to create a new sequence in your team's Apollo account, including its steps and email templates.<br><br>To create a sequence with steps, add the emailer_steps array to the request body. Each email step (auto_email, manual_email) can include one or more emailer_touches (email variants); adding more than one touch to a step creates an A/B test, which requires a plan with A/B testing access.<br><br>To activate the sequence immediately after creation, set active to true. Email touches only send if their status is approved, and a touch can only be approved if its template has a non-empty body.<br><br>This endpoint requires a master API key. If you call the endpoint without a master key, you receive a 403 response. Check out <a href="https://docs.apollo.io/docs/create-api-key">Create an API Key</a> to learn how to create a master key.
Request body
Response
200
Example response
{
"emailer_campaign": {
"id": "68b1f3a2e1d2c40001a23b45",
"name": "Q3 Outbound Outreach",
"active": true,
"permissions": "team_can_use",
"user_id": "60affe7d6e270a00f5db6fe4",
"emailer_schedule_id": "66e9e215ece19801b2199900",
"num_steps": 2,
"creation_type": "new",
"created_at": "2026-06-12T10:15:30.000Z"
},
"emailer_steps": [
{
"id": "68b1f3a2e1d2c40001a23b46",
"emailer_campaign_id": "68b1f3a2e1d2c40001a23b45",
"position": 1,
"type": "auto_email",
"wait_time": 3,
"wait_mode": "day"
}
],
"emailer_touches": [
{
"id": "68b1f3a2e1d2c40001a23b48",
"emailer_step_id": "68b1f3a2e1d2c40001a23b46",
"emailer_template_id": "68b1f3a2e1d2c40001a23b4a",
"status": "approved",
"type": "new_thread"
}
],
"emailer_templates": [
{
"id": "68b1f3a2e1d2c40001a23b4a",
"subject": "Quick question, {{first_name}}",
"body_html": "<p>Hi {{first_name}},</p>"
}
]
}