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

# Remove B2C Connection

GraphQL endpoint: `/company`

Removes an existing B2C connection between the company and a user. The connection is permanently removed and both parties will no longer see each other in their connections list. This action cannot be undone.

## Query

```graphql
mutation (
  $connectionId: ID!
) {
  removeB2cConnection (
    connectionId: $connectionId
  ) {
    id
    type
    insertedAt
    updatedAt
    startedAt
    company {
      id
    }
    connectedUser {
      id
    }
  }
}

```

## Variables

```json
{
  "connectionId": "00000000-0000-4000-8000-000000000003"
}
```

## Response

```json
{
  "data": {
    "removeB2cConnection": {
      "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": "CUSTOMER",
      "updatedAt": "2026-01-15T09:00:00"
    }
  }
}
```
