Skip to content
Draft
Changes from all 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
14 changes: 13 additions & 1 deletion docs/event-notification.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,11 +488,23 @@ NB: can include comments
### MemberUninvitedEvent

- `event/type` always `application.event/member-uninvited`
- `application/member` A map describing the person uninvited `name` (string) and `email` (string)
- `application/member` A map describing the person uninvited `name` (string) and `email` (string). NB, there is no `userid` as it is not known.

NB: can include comments

```json
{
"event/id": 748,
"event/type": "application.event/member-uninvited",
"event/actor": "ABC123XYZ456",
"event/time": "2023-12-22T08:01:55.498Z",
"application/id": 123,
"application/member": {
"name": "Some Body",
"email": "[email protected]"
},
"event/application": {...}
}
```

### AttachmentsRedactedEvent
Expand Down