# groupDelete

Delete a group

**Scope required:** security:write

```graphql
mutation groupDelete ($id: ID!) {
  groupDelete (id: $id) {
      errors
      group {
        id
        name
        parentGroupId
      }
  }
}
```

## Arguments

```json
{
  "id": "456123"
}
```

| Name | Type | Description |
| ---- | ---- | ----------- |
| id   | ID   |             |

## Response

| Name   | Type                                                                | Description |
| ------ | ------------------------------------------------------------------- | ----------- |
| errors | String                                                              |             |
| group  | [Group](https://docs.bunny.com/developer/api-reference/types/group) |             |
