Delete API Proxy Group
Overview
Deletes an API Proxy Group specified by name. The group and all its associations are permanently removed.
Endpoint
DELETE /apiops/projects/{projectName}/apiProxyGroups/{apiProxyGroupName}/
Authentication
Requires a Personal API Access Token.
Header
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)
{
"success": true
}
Error Response (400 Bad Request)
{
"error": "bad_request",
"error_description": "API Proxy Group (PaymentAPIGroup) is not found or user does not have privilege to access it!"
}
cURL Example
curl -X DELETE \
"https://demo.apinizer.com/apiops/projects/MyProject/apiProxyGroups/PaymentAPIGroup/" \
-H "Authorization: Bearer YOUR_TOKEN"
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 - List all API Proxy Groups
- Create API Proxy Group - Create a new API Proxy Group