> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/013_notifications/011__get_group_notification_settings.md).

# Get Group Notification Settings

GraphQL endpoint: `/user`

Returns the notification preferences attached to one of the calling user's group memberships.

## Query

```graphql
query ($groupUserMemberId: ID!) {
  groupNotificationSettings (groupUserMemberId: $groupUserMemberId) {
    id
    groupUserMemberJoinRequestReceivedNotification
    groupUserMemberJoinRequestReceivedEmail
  }
}

```

## Variables

```json
{
  "groupUserMemberId": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "groupNotificationSettings": {
      "groupUserMemberJoinRequestReceivedEmail": true,
      "groupUserMemberJoinRequestReceivedNotification": true,
      "id": "00000000-0000-4000-8000-000000000001"
    }
  }
}
```
