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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sequence_id
string
required

ID or custom ID for the sequence

Response

200
application/json

The response is of type object.