When an event occurs, we'll send an HTTP POST request to your configured request URL. The JSON payload we send will include three top-level attributes:
- type - the type of event (see Event Types below)
- orgId - the organization the event is for
- data - the data associated with the event (a contact, a message, etc)
{
"type": the_event_type,
"orgId": int,
"data": {
...
}
}