# Delete base invite

`DELETE https://api.airtable.com/v0/meta/bases/{baseId}/invites/{inviteId}`

Delete a base invite.

The invite must be [outstanding](https://airtable.com/developers/web/api/org-management-glossary.md#outstanding-invite).

## Requirements

- **Authentication:** [Personal access token](https://airtable.com/developers/web/api/authentication.md#types-of-token), [OAuth integration](https://airtable.com/developers/web/api/authentication.md#types-of-token)
- **Scope:** [`workspacesAndBases:write`](https://airtable.com/developers/web/api/scopes.md#workspaces-and-bases-write)
- **User role:** Base collaborators subject to [sharing restrictions](https://support.airtable.com/docs/workspace-sharing-restrictions)
- **Billing plans:** Enterprise (pre-2023.08 legacy plan), Enterprise Scale

## Path parameters

- `baseId: string`

- `inviteId: string`

## Response format

## Error responses

### 403

**Invite not outstanding** — The invite must be [outstanding](https://airtable.com/developers/web/api/org-management-glossary.md#outstanding-invite).

```json
{
  "error": {
    "message": "You are not permitted to perform this operation",
    "type": "INVALID_PERMISSIONS"
  }
}
```
