Skip to main content
PUT
/
api
/
proxy-config
Update Proxy Configuration
curl --request PUT \
  --url http://localhost:8080/api/proxy-config \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "type": "http",
  "url": "<string>",
  "username": "<string>",
  "password": "<string>",
  "no_proxy": "<string>",
  "timeout": 123,
  "skip_tls_verify": true,
  "enable_for_scim": true,
  "enable_for_inference": true,
  "enable_for_api": true
}
'
{
  "status": "success",
  "message": "Operation completed successfully"
}

Body

application/json
enabled
boolean

Whether the proxy is enabled

type
enum<string>
default:http

Proxy type

Available options:
http,
socks5,
tcp
url
string
username
string

Optional authentication username

password
string

Optional authentication password

no_proxy
string

Comma-separated list of hosts to bypass proxy

timeout
integer

Connection timeout in seconds

skip_tls_verify
boolean

Skip TLS certificate verification

enable_for_scim
boolean

Enable proxy for SCIM requests (enterprise only)

enable_for_inference
boolean

Enable proxy for inference requests

enable_for_api
boolean

Enable proxy for API requests

Response

Proxy configuration updated successfully

status
enum<string>
required

Operation status

Available options:
success
Example:

"success"

message
string
required

Success message

Example:

"Operation completed successfully"