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 |
| weight | integer | No | 1 | Load balancing weight (required if loadBalanceAlgorithm=WEIGHTED) |
| soapType | string | No* | SOAP11 | SOAP version (required if API type is SOAP) |
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: 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)
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

