Create API Proxy Group
Endpoint
POST /apiops/projects/{projectName}/apiProxyGroups/
Authentication
Requires a Personal API Access Token.
Header
Authorization: Bearer YOUR_TOKEN
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {token} | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
Request Body
Full JSON Body Example - Basic API Proxy Group
{
"name": "PaymentAPIGroup",
"description": "Payment API Group",
"clientRoute": {
"relativePathList": [
"/api/v1/payment"
],
"methodList": ["GET", "POST", "PUT", "DELETE"],
"hostList": null,
"headerList": null,
"bufferRequest": true,
"bufferResponse": true
}
}