> 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/007__get_notification_settings.md).

# Get Notification Settings

GraphQL endpoint: `/user`

Returns the calling user's notification preferences, one boolean per event/channel pair (in-app notification and email). All preferences default to enabled.

## Query

```graphql
query {
  notificationSettings {
    c2cConnRequestReceivedNotification
    c2cConnRequestReceivedEmail
    c2cConnRequestResponseNotification
    c2cConnRequestResponseEmail
    b2cConnRequestReceivedNotification
    b2cConnRequestReceivedEmail
    c2bConnRequestResponseNotification
    c2bConnRequestResponseEmail
    b2cSubRequestReceivedNotification
    b2cSubRequestReceivedEmail
    b2cFormInstanceRequestReceivedNotification
    b2cFormInstanceRequestReceivedEmail
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "notificationSettings": {
      "b2cConnRequestReceivedEmail": true,
      "b2cConnRequestReceivedNotification": true,
      "b2cFormInstanceRequestReceivedEmail": true,
      "b2cFormInstanceRequestReceivedNotification": true,
      "b2cSubRequestReceivedEmail": true,
      "b2cSubRequestReceivedNotification": true,
      "c2bConnRequestResponseEmail": true,
      "c2bConnRequestResponseNotification": true,
      "c2cConnRequestReceivedEmail": true,
      "c2cConnRequestReceivedNotification": true,
      "c2cConnRequestResponseEmail": true,
      "c2cConnRequestResponseNotification": true
    }
  }
}
```
