v1

latestOpenAPI 3.1.02026-07-263788129.7 KB
Sequences

List Sequences

Returns a paginated list of sequences.

post/v1/sequences/list

Request body

pageinteger

Page number (1-indexed)

page_sizeinteger

Number of results per page

sortstring

Field to sort by. Prefix with '-' for descending order.

Response

Successful Response

Example response

{
  "data": [
    {
      "id": "seq_abc123",
      "contact_id": "con_def456",
      "name": "Enterprise Onboarding",
      "description": "Multi-touch onboarding sequence for enterprise accounts",
      "status": "started",
      "template_id": "seqt_789ghi",
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2026-05-10T14:22:00Z",
      "last_interaction": "Email today",
      "enqueued_at": "2026-01-16T09:00:00Z",
      "started_at": "2026-01-16T09:05:00Z",
      "responded_at": "2026-01-20T11:30:00Z",
      "meeting_booked_at": "2026-01-22T15:00:00Z",
      "sender_id": "usr_jkl012",
      "sender_name": "Alex Rivera"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 25,
    "total_count": 142,
    "total_pages": 6
  }
}