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
The request body is an object containing an array of routing address objects.Routing Address Object
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| address | string | Yes | - | Backend address URL |
| description | string | No | - | Description for this backend address |
| weight | integer | No | 1 | Load balancing weight (required if loadBalanceAlgorithm=WEIGHTED) |
| soapType | string | No* | SOAP11 | SOAP version (required if API type is SOAP) |
| addressType | string | No | PRIMARY | Address type. See EnumRoutingAddressType |
| healthCheckPath | string | No | - | Active health check path for this backend (only for PRIMARY and FAILOVER_ONLY) |
| healthMonitoringEnabled | boolean | No | - | Enable per-address health monitoring (only for HTTP type) |
EnumRoutingAddressType
PRIMARY- Primary backend address (default, used for normal traffic)CANARY- Canary release address (receives a percentage of traffic)MIRROR- Mirror address (receives a copy of traffic for testing)FAILOVER_ONLY- Failover-only address (used only when primary backends are unavailable)
EnumSoapApiPortType
SOAP11- SOAP 1.1SOAP12- SOAP 1.2
Request Body Object
| Field | Type | Required | Description |
|---|---|---|---|
| routingAddressList | array | Yes | Array of routing address objects |
Note
- Request body must be an object with
routingAddressListarray - For REST APIs,
soapTypeis not required - For SOAP APIs,
soapTypedefaults toSOAP11if not provided - Weight is used when load balancing algorithm is
WEIGHTED
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: Update REST API Backend Addresses
Example 2: Configure Primary and Failover Addresses with Health Check
Example 3: Configure Mirror Address for Traffic Testing
Example 4: Update SOAP API Backend Addresses
Notes and Warnings
- Request Body Format: Request body must be an object with
routingAddressListarray - Address Format: Must be a valid URL (http:// or https://)
- Weight: Used for weighted load balancing (higher weight = more traffic)
- SOAP Type: Required for SOAP APIs, defaults to
SOAP11if not provided - Empty Array: Empty array removes all routing addresses (routing will fail)
- Load Balancing: Configure load balancing algorithm separately (via routing settings)
- Address Types: Use
FAILOVER_ONLYfor disaster recovery backends,MIRRORfor shadow traffic testing,CANARYfor gradual rollout - Health Check:
healthCheckPathdefines the endpoint the gateway calls to verify backend health. Only applicable forPRIMARYandFAILOVER_ONLYaddresses. - Description: Use
descriptionto document the purpose of each backend address
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Related Documentation
- Update Connection Settings - Update connection settings
- Update Routing Status - Update routing status
- Get API Proxy - Get API proxy details

