# Sequences
# Added to Sequence
Fired when a contact is subscribed to a sequence.
| Payload | Type | Description |
|---|---|---|
| event | string | AddedToSequence |
| string | Email of the contact who was subscribed | |
| sequence | string | Name of the sequence |
| date | string | When the event occurred |
# Example Payload
{
"event": "AddedToSequence",
"email": "john@example.com",
"sequence": "Welcome Series",
"date": "2024-01-15 10:30:00"
}
# Removed from Sequence
Fired when a contact is unsubscribed from a sequence.
| Payload | Type | Description |
|---|---|---|
| event | string | RemovedFromSequence |
| string | Email of the contact who was unsubscribed | |
| sequence | string | Name of the sequence |
| date | string | When the event occurred |
# Example Payload
{
"event": "RemovedFromSequence",
"email": "john@example.com",
"sequence": "Welcome Series",
"date": "2024-01-20 14:15:00"
}
← Orders Subscriptions →