ToolsSequences
Create sequence
Create a sequence from an ordered steps array (typically a connection request, an acceptance condition, then 3–4 spaced follow-up messages).
Tool: create_sequence
Parameters
| Param | Type | Required | Description |
|---|---|---|---|
name | string | yes | Sequence name. |
steps | array of step objects | yes | Ordered steps: {id, type, message, delay_days?}. type is a LinkedIn action such as send_connection_request / send_message. Every messaging step needs a message. |
messaging_angles | string[] | no | Named copy variants for attribution. |
default_angle | string | no | Must be one of messaging_angles. Alias: angle. |
goal | string | no | Freeform goal for the sequence. |
Sample request
{
"name": "Founder outreach",
"steps": [
{
"id": "invite",
"type": "send_connection_request",
"message": "Hi {{first_name}}, loved what you're building."
},
{
"id": "follow_up",
"type": "send_message",
"delay_days": 2,
"message": "Hi {{first_name}} — following up on my note."
}
],
"messaging_angles": [
"soft",
"direct"
],
"default_angle": "soft",
"goal": "Book intro calls with seed-stage founders"
}