Update Service Proxy Configuration
Updates an existing HCX Service Proxy configuration identified by UUID. Use this to change the proxy endpoint URL or update configuration parameters.
UUID of the service proxy configuration to update
a1b2c3d4-e5f6-7890-abcd-ef1234567890
Show optional properties
{
"data": {
"items": [
{
"config": {
"url": "https://hcx-proxy.customer.com"
}
}
]
}
}
{
"data": {
"items": [
{
"config": {
"UUID": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"url": "https://hcx-proxy-updated.customer.com"
}
}
]
}
}
data
Service proxy configuration updated successfully
{
"data": {
"items": [
{
"section": "hcxServiceProxy",
"config": {
"url": "https://hcx-proxy.customer.com",
"UUID": "string"
}
}
]
}
}
data
Bad request - invalid configuration
{
"isSuccess": false,
"message": "Request schema validation failed",
"httpStatusCode": 400
}
Indicates if the operation was successful
Human-readable error message
HTTP status code
Service proxy configuration with specified UUID not found
{
"isSuccess": false,
"message": "Service proxy configuration not found",
"httpStatusCode": 404
}
Indicates if the operation was successful
Human-readable error message
HTTP status code
Method not allowed - feature only available on HCX-Connector
"ErrorResponse Object"
Indicates if the operation was successful
Human-readable error message
HTTP status code
Internal server error
"ErrorResponse Object"
Indicates if the operation was successful
Human-readable error message
HTTP status code
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"data":"object"}' https://{api_host}/api/admin/global/config/serviceProxy/{uuid}