# User Group

`DELETE /workspaces/:workspace/groups/:group_id`

Deletes a group

**Required Scopes:** `WORKSPACE`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The ID of the group */
  group_id: number; // Example: 123
}
```


---
Original source: https://buddy.works/docs/api/platform/groups/delete/user-group