> 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/009__get_b2c_connection_notification_settings.md).

# Get B2C Connection Notification Settings

GraphQL endpoint: `/user`

Returns the per-connection email notification preferences for one of the calling user's B2C connections.

## Query

```graphql
query ($b2cConnectionId: ID!) {
  b2cConnectionNotificationSettings(b2cConnectionId: $b2cConnectionId) {
    id
    b2bConnRequestReceivedEmail
    b2bConnRequestResponseEmail
    b2cConnRequestResponseEmail
    c2bConnRequestReceivedEmail
    b2cSubRequestResponseEmail
    companySocialNetworkStatusChangeEmail
    b2bFormInstanceSubmissionRequestReceivedEmail
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "b2cConnectionNotificationSettings": {
      "b2bConnRequestReceivedEmail": true,
      "b2bConnRequestResponseEmail": true,
      "b2bFormInstanceSubmissionRequestReceivedEmail": true,
      "b2cConnRequestResponseEmail": true,
      "b2cSubRequestResponseEmail": true,
      "c2bConnRequestReceivedEmail": true,
      "companySocialNetworkStatusChangeEmail": true,
      "id": "00000000-0000-4000-8000-000000000001"
    }
  }
}
```
