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

Global proxy configuration

enabled
boolean
type
enum<string>
Available options:
http,
socks5,
tcp
url
string
username
string
password
string

Password (redacted as in responses)

no_proxy
string
timeout
integer
skip_tls_verify
boolean
enable_for_scim
boolean
enable_for_inference
boolean
enable_for_api
boolean

Response

Proxy configuration updated successfully

Generic success response

status
string
Example:

"success"

message
string
Example:

"Operation completed successfully"