Payload structure
The payload structure (body) of the webhook HTTP POST request will look like this:
eventType -> what kind of event is this webhook request sending - e.g. participant_joined, participant_left, recording_ready, etc...
sessionId -> id of the session where the event happened
roomId -> id of the room where the event happened
timestamp -> unix timestamp specifying when the event happened
data -> contains concrete details about the event - e.g. which participant actually joined or left
If you have specified an authorization_header during the webhook creation, then you will receive an "Authorization" HTTP header in the webhook POST request with the following value: "Bearer YOUR_SECRET_HERE".
Last updated