Skip to main content

Sequence Events API

Retrieve the history of sequence trigger firings. Each record represents a time a lead completed a sequence of events that matched a sequence trigger.

GET /sequence-events

List sequence events for the active Organizational Unit.

Request

ParameterTypeRequiredDescription
pageintegerNoPage number (default: 1)
limitintegerNoResults per page (default: 25, max: 100)
sequence_idstringNoFilter by specific sequence trigger

Response

200 OK

{
"events": [
{
"id": "sevt-123",
"sequence_id": "seq-456",
"sequence_name": "Buying Intent Sequence",
"lead_id": "ld_789",
"event_types": ["pricing_page_view", "whitepaper_download", "demo_request"],
"fired_at": "2025-01-15T11:00:00Z"
}
],
"total": 8,
"page": 1,
"limit": 25
}

Response Fields

FieldTypeDescription
idstringUnique sequence event identifier
sequence_idstringSequence trigger that fired
sequence_namestringHuman-readable sequence trigger name
lead_idstringLead who completed the sequence
event_typesarrayThe event types that were completed
fired_attimestampWhen the sequence was completed

Example

curl -X GET "https://api.leadvibe.com/sequence-events?page=1&limit=25" \
-H "Authorization: Bearer <token>"

Common Errors

StatusMeaningSolution
401UnauthorizedCheck authentication token
500Server ErrorContact support if persists

Notes

  • Sequence events are OU-scoped to the active Organizational Unit
  • Events are ordered by most recent first