> 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/002_company/006_b2c_connections/002__list_b2c_connections_as_company.md).

# List B2C Connections (Company)

GraphQL endpoint: `/company`

Lists all active B2C connections for the authenticated company. B2C connections represent relationships between a company and individual users. You can filter by connection type (included or excluded) and limit the results.

## Query

```graphql
query (
  $includedType: B2cConnectionType
  $excludedType: B2cConnectionType
  $limit: Int
) {
  b2cConnections (
    includedType: $includedType
    excludedType: $excludedType
    limit: $limit
  ) {
    id
    type
    insertedAt
    updatedAt
    startedAt
    company {
      id
    }
    connectedUser {
      id
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "b2cConnections": [
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000002"
        },
        "id": "00000000-0000-4000-8000-000000000003",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000004"
        },
        "id": "00000000-0000-4000-8000-000000000005",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000006"
        },
        "id": "00000000-0000-4000-8000-000000000007",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000008"
        },
        "id": "00000000-0000-4000-8000-000000000009",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000010"
        },
        "id": "00000000-0000-4000-8000-000000000011",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000012"
        },
        "id": "00000000-0000-4000-8000-000000000013",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000014"
        },
        "id": "00000000-0000-4000-8000-000000000015",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000016"
        },
        "id": "00000000-0000-4000-8000-000000000017",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000018"
        },
        "id": "00000000-0000-4000-8000-000000000019",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      },
      {
        "company": {
          "id": "00000000-0000-4000-8000-000000000001"
        },
        "connectedUser": {
          "id": "00000000-0000-4000-8000-000000000020"
        },
        "id": "00000000-0000-4000-8000-000000000021",
        "insertedAt": "2026-01-15T09:00:00",
        "startedAt": null,
        "type": "OTHER",
        "updatedAt": "2026-01-15T09:00:00"
      }
    ]
  }
}
```
