Skip to content

Webhooks

ABC Glofox supports webhooks for real-time updates. Each webhook can be configured to send events to one or more target endpoints (URLs).

See the webhook documentation for a list of available webhooks.

To ensure data consistency, supplement webhooks with a daily sync. For example, listen for POST events on the member webhook and perform a daily sync using /2.0/members with appropriate filters.

Webhook Signature

Each webhook includes a signature query parameter for source validation. The secret key for webhooks is provided with your API credentials. The signature is a HMAC-SHA256 hash (hexadecimal string): Signature = Hex( HMAC-SHA256( YourSecretKey, StringToSign ))