Warning: This feature is primarily meant for advanced users and developers!

Webhooks are a lightweight API that allows for one-way data sharing triggered by events. In other words, you can send data somewhere based on some specific event happening.

In this case, currently we support sending registrant data somewhere after an event (webinar or meeting) registration.

In order to get started, you'll need to have an application or server URL that can receive data from our webinar software.

Our webinar software sends data in a POST request. The request payload is in JSON format and includes the following information:

{
    email: 'example@email.com',
    first: 'Joe',
    last: 'Schmo',
    phoneCountryCode: '+1',
    phone: '123456789',
    customField1: 'Custom field 1',
    customField2: 'Custom field 2',
    customField3: 'Custom field 3',
    customField4: 'Custom field 4',
    customField5: 'Custom field 5',
    url: 'https://mycustomdomain.com/webinar/thankyou/12345',
    date: 'Wednesday, June 22nd at 10:45 PM ET'
}