# Group management

Webhook payloads for the NewMember and RemovedMember group management events.

These are the `event` payloads Nexus sends for the `GroupManagement` `eventType`. Each arrives inside the standard notification envelope (`eventId`, `createdAt`, `eventType`, `eventAction`, `event`) documented in the [webhooks guide](/additional-features/webhooks/).

## NewMember event

Nexus sends this `event` when a member joins your creator program. `code` and `name` are the group code and group name, and `logoImage` is the group's logo. The event payload looks something like this:

```json
{
    "memberId": "bISbqtpNo3KvwEIL1MSCn",
    "code": "pccp3",
    "name": "Thanks for supporting Phoenix CCP 3",
    "logoImage": "https://cdn.nexus.gg/oleyE4Z6zwN07YnytKuw2/y5TPG4VP7MaiuNBEdBemU/images/profile-image.jpg"
}
```

## RemovedMember event

Nexus sends this `event` when a member is removed from your creator program. `code` is the group code, and `removalDate` and `removalReason` describe when and why the member was removed. The event payload looks something like this:

```json
{
    "memberId": "bISbqtpNo3KvwEIL1MSCn",
    "code": "pccp3",
    "removalDate": "2025-07-28T20:53:39.124Z",
    "removalReason": "They were not prepared"
}
```

<LinkCard title="Webhooks guide" description="The notification envelope, signature verification, and a runnable handler." href="/additional-features/webhooks/" />
<LinkCard title="Event types" description="All webhook event types Nexus sends." href="/additional-features/webhooks/event-types/" />
