Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
ID or custom ID for the sequence.
Body
application/json
- ID
- Email
- Phone
curl --request POST \
--url https://api.open.cx/sequences/{sequence_id}/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contacts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}'{
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Add contacts to a continuous sequence (is_continuous property of the sequence must be true).
Contacts will not be added to the sequence if the sequence’s filter does not apply to the contact.
Any contacts added will automatically be added to contacts if they don’t already exist.
curl --request POST \
--url https://api.open.cx/sequences/{sequence_id}/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contacts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}'{
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID or custom ID for the sequence.
Show child attributes
Was this page helpful?