Contacts
Sessions
AI Phone Agents
AI Email
AI WhatsApp
AI Outbound Sequencing
AI Training
Customer Insights
Groups (teams)
Webhooks
AI Outbound Sequencing
Get a sequence
GET
/
sequences
/
{sequence_id}
curl --request GET \
--url https://api.open.cx/sequences/{sequence_id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"name": "<string>",
"org_id": "<string>",
"custom_id": "<string>",
"filter": {
"or": [
{
"and": [
{
"type": "all_contacts"
}
]
}
]
},
"steps": [
{
"action": {
"type": "send_emails",
"data": {
"from_email": "<string>",
"email_subject": "<string>",
"email_body": "<string>",
"email_sender_name": "<string>",
"email_is_transactional": true
}
},
"delay_in_minutes": 1,
"started_at": "<string>",
"ended_at": "<string>"
}
],
"is_continuous": true,
"started_at": "<string>",
"canceled_at": "<string>",
"ended_at": "<string>",
"status": "pending"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID or custom ID for the sequence
Response
200
application/json
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.open.cx/sequences/{sequence_id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"name": "<string>",
"org_id": "<string>",
"custom_id": "<string>",
"filter": {
"or": [
{
"and": [
{
"type": "all_contacts"
}
]
}
]
},
"steps": [
{
"action": {
"type": "send_emails",
"data": {
"from_email": "<string>",
"email_subject": "<string>",
"email_body": "<string>",
"email_sender_name": "<string>",
"email_is_transactional": true
}
},
"delay_in_minutes": 1,
"started_at": "<string>",
"ended_at": "<string>"
}
],
"is_continuous": true,
"started_at": "<string>",
"canceled_at": "<string>",
"ended_at": "<string>",
"status": "pending"
}
Assistant
Responses are generated using AI and may contain mistakes.