Sequences
Duplicate sequence
Creates an independent draft copy of the sequence graph, email templates, and sequence A/B tests.
post/sequences/{sequenceId}/duplicate
Path parameters
sequenceIdstring required
Request body
Response
Sequence duplicated successfully
Example response
{
"sequence": {
"id": "seq_abc123",
"name": "Welcome Sequence",
"trigger": "trigger_list",
"sendingWindow": {
"enabled": true,
"timezone": "Europe/Kiev",
"startTime": "08:00",
"endTime": "20:00",
"days": [
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
]
},
"bccEmails": [
"cs-team@example.com"
]
},
"nodes": [
{
"id": "node_abc123",
"automationId": "seq_abc123",
"nodeType": "action_email",
"updatedAt": "2026-07-17T10:00:00.000Z",
"updateHints": {
"tool": "update_sequence_node",
"expectedUpdatedAt": "2026-07-17T10:00:00.000Z"
},
"position": {
"x": 300,
"y": 150
}
}
],
"edges": [
{
"sourceNodeId": "node_trigger",
"targetNodeId": "node_welcome_email",
"condition": {
"branchId": "branch-0"
}
}
]
}