Webhooks
Managers are allowed to register Webhooks to receive events for all transactional email sent, from the configuration page of the Transactional service on opper MarketingSuite dashboard.
Events
All event messages are JSON objects containing the following fields :
- event : Type of event
- date : Date of the event
- ts_epoch : Timestamp (in milliseconds) of the event
- message-id : ID of the message
- subject : Subject of the message
- tags : List if tags applied on the transactional email
Sent event
This event occurs when the email has been sent
Additional fields in event :
- mirror_link : URL of the preview of the message
Example :
1 2 3 4 5 6 7 8 9 |
|
Delivered event
This event occurs when the email has been delivered
Additional fields in event :
- email : Email address to which the email was delivered
Example :
1 2 3 4 5 6 7 8 9 |
|
First Opened event
This event occurs when the email has been opened the first time
Additional fields in event :
- user_agent : User-Agent from which the email was opened
Example :
1 2 3 4 5 6 7 8 9 |
|
Opened event
This event occurs when the email has been opened for the second time (or more)
Additional fields in event :
- user_agent : User-Agent from which the email was opened
Example :
1 2 3 4 5 6 7 8 9 |
|
Clicked event
This event occurs when the recipient has clicked on a link in the email
Additional fields in event :
- link : URL of the clicked link
- user_agent : User-Agent from which the email was clicked
Example :
1 2 3 4 5 6 7 8 9 10 |
|
Invalid Email event
This event occurs when the email could not be sent due to an invalid email address
Additional fields in event :
- message : Details message
Example :
1 2 3 4 5 6 7 8 9 |
|
Error event
This event occurs when the email could not be sent due to an error
Additional fields in event : - message : Error message
Example :
1 2 3 4 5 6 7 8 9 |
|
Soft Bounce event
This event occurs when the email could not be delivered due to a 'soft' bounce
Additional fields in event :
- email : Email address from which a bounce was received
- message : Bounce message
Example :
1 2 3 4 5 6 7 8 9 10 |
|
Hard Bounce event
This event occurs when the email could not be delivered due to a 'hard' bounce
Additional fields in event :
- email : Email address from which a bounce was received
- message : Bounce message
Example :
1 2 3 4 5 6 7 8 9 10 |
|
Complaint event
This event occurs when a Spam complaint has been received for the email
Additional fields in event :
- email : Email address from which a complaint was received
Example :
1 2 3 4 5 6 7 8 9 |
|
Unsubscribed event
Not applicable for now
Blocked event
This event occurs when the email could not be delivered due to recipients registered in blacklist (known for hard-bounce or complaint)
Additional fields in event :
- message : Details message
Example :
1 2 3 4 5 6 7 8 9 |
|