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 |
|---|---|---|---|---|
| maxInboundMessageSize | integer | No | System default | Maximum size of inbound gRPC messages in bytes |
| maxInboundMetadataSize | integer | No | System default | Maximum size of inbound metadata (headers) in bytes |
| keepAliveTime | integer | No | System default | Interval in seconds between keep-alive pings |
| keepAliveTimeout | integer | No | System default | Timeout in seconds for keep-alive ping response |
| keepAliveWithoutCalls | boolean | No | System default | Send keep-alive pings even without active RPCs |
| channelIdleTimeout | integer | No | System default | Close channel after this idle period in seconds |
| perRpcBufferLimit | integer | No | System default | Per-RPC buffer size limit in bytes |
| maxRetryAttempts | integer | No | System default | Maximum number of retry attempts per RPC |
| maxHedgedAttempts | integer | No | System default | Maximum number of hedged attempts per RPC |
| maxTraceEvents | integer | No | System default | Maximum number of trace events to keep in channel trace |
Response
Success Response (200 OK)
Error Response (400 Bad Request)
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Example 1: Configure Message Size and Keep-Alive
Example 2: Configure Retry and Hedging
Example 3: Configure Channel Idle Timeout
Notes and Warnings
- gRPC Only: This endpoint is only applicable to API Proxies with gRPC type. Using it on HTTP/REST proxies will result in an error.
- Message Size:
maxInboundMessageSizelimits the size of individual gRPC messages. Increase for large payloads (e.g., file uploads). - Keep-Alive: Keep-alive pings maintain the connection to the backend.
keepAliveWithoutCalls=truekeeps the connection alive even when no RPCs are active. - Retry vs Hedging: Retry attempts are sequential (retry after failure), hedged attempts are parallel (send multiple copies simultaneously).
- Buffer Limit:
perRpcBufferLimitcontrols how much data can be buffered per RPC — relevant for retries and hedging. - System Defaults: When a field is not set, the value is inherited from system-level settings.
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Related Documentation
- Update Connection Settings - Update HTTP connection settings
- Update Routing Addresses - Update backend routing addresses
- Get API Proxy - Get API proxy details

