-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -286,6 +286,29 @@ The application then may get the latest terms of use through the [Get Terms Of U | |
} | ||
``` | ||
|
||
## Consent update events | ||
|
||
Fired whenever a user grants or revokes a consent. A whole deletion of a consent triggers a revoked event. | ||
Applications that are part of any of the users subscriptions receive a notification. The application can then retrieve the latest consense status of the user. | ||
|
||
`tapio.consentinator.consent.revoked` | ||
|
||
```json | ||
{ | ||
"subjectId": "c2650bda-d88e-471b-b4b0-5da770ad03ba", | ||
"userEmail": "[email protected]" | ||
} | ||
``` | ||
|
||
`tapio.consentinator.consent.granted` | ||
|
||
```json | ||
{ | ||
"subjectId": "c2650bda-d88e-471b-b4b0-5da770ad03ba", | ||
"userEmail": "[email protected]" | ||
} | ||
``` | ||
|
||
## Service Partner Relation Changed Event | ||
|
||
Fired when something about the service partner relation of a subscription has been changed. | ||
|