> 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/015_invitation_links/005__delete_company_invitation_link.md).

# Delete Company Invitation Link

GraphQL endpoint: `/company`

Deletes one of the current company's invitation links. The link's token can no longer be used to join. Returns an OK status on success.

## Query

```graphql
mutation ($id: ID!) {
  deleteCompanyInvitationLink(id: $id) {
    status
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "deleteCompanyInvitationLink": {
      "status": "OK"
    }
  }
}
```
