Skip to content

Commit

Permalink
Update cloud-events.md
Browse files Browse the repository at this point in the history
added consi cloud events
  • Loading branch information
noelroehrig authored Nov 16, 2023
1 parent 0f03b6d commit 92257c7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/general/cloud-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 92257c7

Please sign in to comment.