Skip to content

Update webhooks application #246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 19, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions site/docs/v1/tech/events-webhooks/events.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,24 @@ These are the events that FusionAuth generates that can be optionally consumed b
* <<JWT Refresh>> - when an access token is refreshed using a refresh token
* <<JWT Refresh Token Revoke>> - when a refresh token (or multiple tokens) are revoked

=== Application Scoped Events

Some events can be generated for one or more specified applications. These events may also be generated for all applications within a tenant.

The events that are considered "application" events and can be scoped to an application based up the Webhook config:

* `user.action`
* `jwt.refresh-token.revoke`
* `jwt.refresh`
* `jwt.public-key.update`

=== Tenant Scoped Events

Any events which are not application scoped events are by tenant scoped.

Tenant scoped events can't be limited to a certain application. These are either generated for all applications in a tenant or for none of them.

All user events are tenant scoped because a user is a tenant scoped entity. For example, the `user.delete`, `user.create`, `user.update`, and `user.deactivate` events are all tenant scoped.

== User Actions

Expand Down