Endpoint
Authentication
Requires a Personal API Access Token.Header
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
Request Body
Full JSON Body Example
Request Body Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| connectionSettingsEnabled | boolean | No | - | Enable/disable custom connection settings |
| connectTimeout | integer | No | - | Connection timeout in seconds |
| readTimeout | integer | No | - | Read timeout in seconds |
| connectionRequestTimeout | integer | No | - | Connection request timeout in seconds |
| redirectsEnabled | boolean | No | - | Enable/disable HTTP redirects |
| maxRedirects | integer | No | - | Maximum number of redirects |
| relativeRedirectsAllowed | boolean | No | - | Allow relative redirects |
| disableContentCompression | boolean | No | - | Disable content compression |
| enableStreaming | boolean | No | - | Enable streaming mode |
| retryCount | integer | No | - | Number of retries on failure |
| failoverRetryCount | integer | No | - | Number of failover retries |
| ignoreRoutingError | boolean | No | - | Ignore routing errors |
| connectionPoolManagementType | string | No | - | Connection pool management type |
| customConnectionPoolSize | integer | No* | - | Custom connection pool size (required if connectionPoolManagementType=CUSTOM) |
EnumConnectionPoolManagementType
GENERAL- General connection pool (shared pool)CUSTOM- Custom connection pool (requires customConnectionPoolSize)NONE- No connection pool
Response
Success Response (200 OK)
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates if the request was successful |
Error Response (400 Bad Request)
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Example 1: Configure Connection Timeouts
Example 2: Configure Custom Connection Pool
Notes and Warnings
- Timeouts: All timeout values are in seconds
- Connection Pool:
CUSTOMrequirescustomConnectionPoolSizeto be set - Retries:
retryCountretries on same backend,failoverRetryCounttries failover backends - Redirects: When
redirectsEnabled=true, HTTP redirects are followed (maxmaxRedirects) - Streaming: When
enableStreaming=true, response is streamed instead of buffered - Content Compression: When
disableContentCompression=true, content compression is disabled
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Related Documentation
- Update Circuit Breaker Settings - Update circuit breaker settings
- Update Routing Addresses - Update routing addresses
- Get API Proxy - Get API proxy details

