# Delete group

`DELETE https://api.airtable.com/scim/v2/Groups/{groupId}`

Delete a single [SCIM Group](https://datatracker.ietf.org/doc/html/rfc7643#section-4.2).

## 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:** [`enterprise.scim.usersAndGroups:manage`](https://airtable.com/developers/web/api/scopes.md#enterprise-scim-users-and-groups-manage)
- **User role:** Enterprise admin _Note: Admins of multiple enterprises should use a service account's token when calling this route._
- **Billing plans:** Enterprise (pre-2023.08 legacy plan), Enterprise Scale

## Path parameters

- `groupId: string`

## Response format

Returns `object`.

## Error responses

### 400

**Unknown group ID** — With an unknown Group ID

```json
{
  "detail": "invalid group ID",
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:Error"
  ],
  "status": 400
}
```
