> 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/002_email/005__remove_company_email.md).

# Remove Company Email

GraphQL endpoint: `/company`

Remove an email address from the company's profile. This permanently deletes the email record.

## Query

```graphql
mutation (
  $id: ID!
) {
  removeCompanyEmail (
    id: $id
  ) {
    id
    email
    types
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "removeCompanyEmail": {
      "email": "test1@email.com",
      "id": "00000000-0000-4000-8000-000000000001",
      "types": [
        "HEADQUARTERS"
      ]
    }
  }
}
```
