curl --request PATCH \
--url https://api.open.cx/sequences/{sequence_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "New Sequence",
"custom_id": "<string>",
"is_continuous": true,
"filter": {
"or": [
{
"and": [
{
"type": "<string>"
}
]
}
]
},
"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
}
]
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}curl --request PATCH \
--url https://api.open.cx/sequences/{sequence_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "New Sequence",
"custom_id": "<string>",
"is_continuous": true,
"filter": {
"or": [
{
"and": [
{
"type": "<string>"
}
]
}
]
},
"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
}
]
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Was this page helpful?