Introduction to Clear Webhooks

1000

Get it...? Webhooks?

You can get data out of Clear when an event happens, such as when an attendee registers.

Webhooks will always be in a JSON format, if you want it to be sent as something else then too bad (if you really want XML or something, ask us and we'll implement it).

A hook request looks like this (will be sent over POST):

{
  "data": {
    // webhook-specific data
  },
  "private": "[[app:secret]]", // for verifying that this actually came from Clear
  "event": "" // the hook event (e.g. "registration.register")
}

Here is the list of current webhooks:

Webhook Name

Fired When

Registration.Register

Attendee registered

Add this webhook

Registration.Checkin

Attendee checked in

Add this webhook

Registration.Checkout

Attendee checked out

Add this webhook