Webhooks
Webhooks is one of the supported hooks to receive events.
Configure Authgear to deliver events to your webhook
hook:
blocking_handlers:
- event: "user.pre_create"
url: 'https://myapp.com/check_user_create'
non_blocking_handlers:
# listen to all events and filter events by type in request
- events: ["*"]
url: 'https://myapp.com/all_events'
- events: ["user.created"]
url: 'https://myapp.com/sync_user_creation'Protocol
Verifying signature
Last updated
Was this helpful?