Automatically trigger webhook events after your meetings
verify_webhook
helper. Simply call:
webhook_secret
– Provided when you create the webhook (either in Settings or via the API).
request.headers
– The HTTP headers from the incoming request, which include the signature Fathom sends.
request.body
– The raw string body of the POST request.
webhook-signature
in the header, with a version prefix and a base64-encoded value.
Example: "v1,BKQR1BIFjiNPdfpqM3+FH/YckKhX7WIq4/KK6Cc5aDY="
View in docs
To verify the request:
webhook-signature
header after the comma (this may include multiple space-delimited signatures)webhook_secret
to hash the request body with HMAC SHA-256 (be sure to use the raw body, before any JSON parsing)