curl --request PUT \
--url https://api.getoneprofile.ai/sequences/{sequence_id}/graph/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"expected_updated_at": "2023-11-07T05:31:56Z",
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
]
}
'import requests
url = "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/"
payload = {
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"expected_updated_at": "2023-11-07T05:31:56Z",
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": ["<string>"],
"prompt": "",
"required": True,
"text": ""
}
],
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": ["<string>"],
"prompt": "",
"required": True,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
edges: [
{
branch: 'default',
from_step_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
to_step_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
expected_updated_at: '2023-11-07T05:31:56Z',
steps: [
{
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
body_segments: [
{
column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
options: ['<string>'],
prompt: '',
required: true,
text: ''
}
],
condition_window_days: 45,
position: 0,
subject_segments: [
{
column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
options: ['<string>'],
prompt: '',
required: true,
text: ''
}
],
wait_amount: 0,
wait_unit: 'days'
}
]
})
};
fetch('https://api.getoneprofile.ai/sequences/{sequence_id}/graph/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'edges' => [
[
'branch' => 'default',
'from_step_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'to_step_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'expected_updated_at' => '2023-11-07T05:31:56Z',
'steps' => [
[
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'body_segments' => [
[
'column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'options' => [
'<string>'
],
'prompt' => '',
'required' => true,
'text' => ''
]
],
'condition_window_days' => 45,
'position' => 0,
'subject_segments' => [
[
'column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'options' => [
'<string>'
],
'prompt' => '',
'required' => true,
'text' => ''
]
],
'wait_amount' => 0,
'wait_unit' => 'days'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/"
payload := strings.NewReader("{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.getoneprofile.ai/sequences/{sequence_id}/graph/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getoneprofile.ai/sequences/{sequence_id}/graph/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"audience_table_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"audience_view_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"column_mapping": {
"company_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_name_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_url_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"created_at": "2023-11-07T05:31:56Z",
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"launched_at": "2023-11-07T05:31:56Z",
"multithreading": {},
"name": "<string>",
"opt_out_footer_text": "<string>",
"pause_reason": "<string>",
"sending_window": {},
"status": "draft",
"status_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"step_count": 123,
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"kind": "message",
"body_segments": [
{
"kind": "text",
"builtin": "sender_first_name",
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"condition_kind": "has_email",
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"kind": "text",
"builtin": "sender_first_name",
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
],
"updated_at": "2023-11-07T05:31:56Z",
"ai_cta_label": "<string>",
"ai_cta_url": "<string>",
"ai_goal": "<string>",
"ai_language": "<string>",
"ai_reply_mode": "off",
"ai_tone": "professional",
"ai_translate": true,
"bcc_addresses": [
"<string>"
],
"cc_addresses": [
"<string>"
],
"connection_requests_sent": 123,
"connections_accepted": 123,
"contacts_added": 123,
"contacts_failed": 123,
"contacts_finished": 123,
"contacts_in_progress": 123,
"emails_sent": 123,
"last_synced_at": "2023-11-07T05:31:56Z",
"linkedin_check_max_seconds": 123,
"linkedin_check_min_seconds": 123,
"linkedin_messages_sent": 123,
"opportunity_values": {},
"plain_text_only": true,
"positive": 123,
"positive_rate": 123,
"replies": 123,
"reply_rate": 123,
"sender_profile_names": [
"<string>"
],
"senders_ready": true,
"sending_priority": "new_contacts"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>",
"issues": [
{
"input": "<string>",
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Replace the sequence graph
Structural edits save immediately; the graph is validated before it lands. Allowed while the sequence is running (PHASE2 §16): in-flight contacts follow the edited graph from where they stand, and a contact whose step is deleted stops with a reason rather than reporting itself complete.
curl --request PUT \
--url https://api.getoneprofile.ai/sequences/{sequence_id}/graph/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"expected_updated_at": "2023-11-07T05:31:56Z",
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
]
}
'import requests
url = "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/"
payload = {
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"expected_updated_at": "2023-11-07T05:31:56Z",
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"body_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": ["<string>"],
"prompt": "",
"required": True,
"text": ""
}
],
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": ["<string>"],
"prompt": "",
"required": True,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
edges: [
{
branch: 'default',
from_step_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
to_step_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
}
],
expected_updated_at: '2023-11-07T05:31:56Z',
steps: [
{
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
body_segments: [
{
column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
options: ['<string>'],
prompt: '',
required: true,
text: ''
}
],
condition_window_days: 45,
position: 0,
subject_segments: [
{
column_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
options: ['<string>'],
prompt: '',
required: true,
text: ''
}
],
wait_amount: 0,
wait_unit: 'days'
}
]
})
};
fetch('https://api.getoneprofile.ai/sequences/{sequence_id}/graph/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'edges' => [
[
'branch' => 'default',
'from_step_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'to_step_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]
],
'expected_updated_at' => '2023-11-07T05:31:56Z',
'steps' => [
[
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'body_segments' => [
[
'column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'options' => [
'<string>'
],
'prompt' => '',
'required' => true,
'text' => ''
]
],
'condition_window_days' => 45,
'position' => 0,
'subject_segments' => [
[
'column_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'options' => [
'<string>'
],
'prompt' => '',
'required' => true,
'text' => ''
]
],
'wait_amount' => 0,
'wait_unit' => 'days'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getoneprofile.ai/sequences/{sequence_id}/graph/"
payload := strings.NewReader("{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.getoneprofile.ai/sequences/{sequence_id}/graph/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getoneprofile.ai/sequences/{sequence_id}/graph/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"edges\": [\n {\n \"branch\": \"default\",\n \"from_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"to_step_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n }\n ],\n \"expected_updated_at\": \"2023-11-07T05:31:56Z\",\n \"steps\": [\n {\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"body_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"condition_window_days\": 45,\n \"position\": 0,\n \"subject_segments\": [\n {\n \"column_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"options\": [\n \"<string>\"\n ],\n \"prompt\": \"\",\n \"required\": true,\n \"text\": \"\"\n }\n ],\n \"wait_amount\": 0,\n \"wait_unit\": \"days\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"audience_table_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"audience_view_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"column_mapping": {
"company_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_name_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_url_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"created_at": "2023-11-07T05:31:56Z",
"edges": [
{
"branch": "default",
"from_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"to_step_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"launched_at": "2023-11-07T05:31:56Z",
"multithreading": {},
"name": "<string>",
"opt_out_footer_text": "<string>",
"pause_reason": "<string>",
"sending_window": {},
"status": "draft",
"status_column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"step_count": 123,
"steps": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"kind": "message",
"body_segments": [
{
"kind": "text",
"builtin": "sender_first_name",
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"condition_kind": "has_email",
"condition_window_days": 45,
"position": 0,
"subject_segments": [
{
"kind": "text",
"builtin": "sender_first_name",
"column_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"options": [
"<string>"
],
"prompt": "",
"required": true,
"text": ""
}
],
"wait_amount": 0,
"wait_unit": "days"
}
],
"updated_at": "2023-11-07T05:31:56Z",
"ai_cta_label": "<string>",
"ai_cta_url": "<string>",
"ai_goal": "<string>",
"ai_language": "<string>",
"ai_reply_mode": "off",
"ai_tone": "professional",
"ai_translate": true,
"bcc_addresses": [
"<string>"
],
"cc_addresses": [
"<string>"
],
"connection_requests_sent": 123,
"connections_accepted": 123,
"contacts_added": 123,
"contacts_failed": 123,
"contacts_finished": 123,
"contacts_in_progress": 123,
"emails_sent": 123,
"last_synced_at": "2023-11-07T05:31:56Z",
"linkedin_check_max_seconds": 123,
"linkedin_check_min_seconds": 123,
"linkedin_messages_sent": 123,
"opportunity_values": {},
"plain_text_only": true,
"positive": 123,
"positive_rate": 123,
"replies": 123,
"reply_rate": 123,
"sender_profile_names": [
"<string>"
],
"senders_ready": true,
"sending_priority": "new_contacts"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>",
"issues": [
{
"input": "<string>",
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Lifecycle of a sequence.
DRAFT until launch; RUNNING sequences are locked against structural edits (pause → edit → resume); PAUSED stops scheduling while leaving every enrolment exactly where it is; COMPLETED is terminal.
draft, running, paused, completed Show child attributes
Show child attributes
How far the AI reply layer may go on this sequence.
Auto-drafting is PHASE2 §8; the self-sending auto-pilot is INB-15.
OFF is the default everywhere: a workspace opts in. AUTO_SEND is a further
EXPLICIT opt-in: a HIGH-confidence draft on a healthy thread is approved
automatically — through the exact same approve path a human uses, so
sending stays one code path — while anything uncertain (lower confidence,
a Negative/Wrong-contact label, OOO, a bounce, or a thread the agent has
already answered five times) waits in Needs approval exactly like
DRAFT_AND_QUEUE. An auto-sent draft records NO approver: a NULL
approved_by_user_id on a SENT draft is the honest audit trail.
off, draft_and_queue, auto_send How a generated reply should read.
professional, friendly, direct, casual SEQ-21: blind copies on every email this sequence sends.
SEQ-21: addresses copied on every email this sequence sends.
SEQ-06: invitations from this sequence confirmed accepted. With connection_requests_sent this yields the acceptance rate.
§21 rollup, list reads only. None when the rollup has never run for this org — show a zero state, not a fake 0.
§20: when the audience-enrolment diff last completed. None until the first sync (launch runs one inline) — the Audience tab shows this plus a manual trigger, never a background job the user cannot see.
SEQ-23: dollars per outcome label; None = tracking off.
Show child attributes
Show child attributes
SEQ-16: TRUE (recommended) sends text-only with formatting marks stripped; FALSE sends a multipart/alternative with the marks as HTML.
Threads labelled positive (rollup, list reads only).
SEQ-06: distinct contacts who replied — reply_rate's numerator.
Only meaningful on list reads: the assigned sender profiles' names.
Only meaningful on list reads: False when the sequence has assigned sender profiles but none currently has a connected mailbox.
SEQ-20: who gets scarce capacity first — new_contacts or follow_ups.
Was this page helpful?