Skip to main content

Create a HTTP Proxy Server

Select

SaaS
Customer Managed

This operation creates an HTTP proxy server.

More Details

Request Body required
  • config object
  • proxyPort integer
  • useProxyAuthentication boolean
  • useHttpProxy boolean
  • proxyServer string
  • proxyType integer
  • proxyCredentials object
  • password string
  • userName string
  • proxyClient object
  • clientId integer
  • clientName string
  • type integer
  • _type_ integer
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /commcell/internetoptions/proxy    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body required

{
"config": {
"proxyPort": 0,
"useProxyAuthentication": true,
"useHttpProxy": true,
"proxyServer": "string",
"proxyType": 0,
"proxyCredentials": {
"password": "string",
"userName": "string"
},
"proxyClient": {
"clientId": 0,
"clientName": "string",
"type": 0,
"_type_": 0
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Commcell/InternetOptions/Proxy' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"config": {
"proxyPort": 0,
"useProxyAuthentication": true,
"useHttpProxy": true,
"proxyServer": "string",
"proxyType": 0,
"proxyCredentials": {
"password": "string",
"userName": "string"
},
"proxyClient": {
"clientId": 0,
"clientName": "string",
"type": 0,
"_type_": 0
}
}
}'