> 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/004_telephone_number/006__remove_user_telephone_number.md).

# Remove User Telephone Number

GraphQL endpoint: `/user`

Removes a telephone number from the user's profile. Note: The primary telephone number cannot be removed. You must first set a different number as primary before removing the current primary telephone number.

## Query

```graphql
mutation (
  $id: ID!
) {
  removeUserTelephoneNumber (
    id: $id
  ) {
    id
    number
    types
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "removeUserTelephoneNumber": {
      "id": "00000000-0000-4000-8000-000000000001",
      "number": "1",
      "types": [
        "OTHER"
      ]
    }
  }
}
```
