> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete API Proxy Group

> Deletes an API Proxy Group specified by name. The group and all its associations are permanently removed.

## Endpoint

```plaintext theme={null}
DELETE /apiops/projects/{projectName}/apiProxyGroups/{apiProxyGroupName}/
```

## Authentication

Requires a Personal API Access Token.

### Header

```plaintext theme={null}
Authorization: Bearer YOUR_TOKEN
```

## Request

### Headers

| Header        | Value          | Required |
| ------------- | -------------- | -------- |
| Authorization | Bearer {token} | Yes      |

### Path Parameters

| Parameter         | Type   | Required | Description          |
| ----------------- | ------ | -------- | -------------------- |
| projectName       | string | Yes      | Project name         |
| apiProxyGroupName | string | Yes      | API Proxy Group name |

### Request Body

None.

## Response

### Success Response (200 OK)

```json theme={null}
{
  "success": true
}
```

### Error Response (400 Bad Request)

```json theme={null}
{
  "error": "bad_request",
  "error_description": "API Proxy Group (PaymentAPIGroup) is not found or user does not have privilege to access it!"
}
```

## cURL Example

```bash theme={null}
curl -X DELETE \
  "https://demo.apinizer.com/apiops/projects/MyProject/apiProxyGroups/PaymentAPIGroup/" \
  -H "Authorization: Bearer YOUR_TOKEN"
```

## Permissions

* User must have **`API_MANAGEMENT` + `MANAGE`** permission in the project

## Notes and Warnings

* **Permanent Deletion**:
  * API Proxy Group is permanently deleted
  * This action cannot be undone

* **API Proxy Associations**:
  * API Proxies are removed from the group
  * API Proxies themselves are not deleted

## Related Documentation

* [List API Proxy Groups](/api-reference/api-proxy-groups/crud/list-api-proxy-groups) - List all API Proxy Groups
* [Create API Proxy Group](/api-reference/api-proxy-groups/crud/create-api-proxy-group) - Create a new API Proxy Group
