Box
Set proxy
Configures the HTTP proxy settings for a specific box. Use this endpoint when you need the box's outbound network traffic to pass through a proxy server.
post/boxes/{boxId}/proxy
Path parameters
boxIdstring required
Example:c9bdc193-b54b-4ddb-a035-5ac0c598d32d
Box ID
Request body
Example request
{
"auth": {
"username": "admin",
"password": "password"
},
"excludes": [
"127.0.0.1",
"localhost"
],
"host": "127.0.0.1",
"port": 8080,
"pacUrl": "http://proxy.company.com/proxy.pac"
}Response
Proxy set
Example response
{
"auth": {
"username": "admin",
"password": "password"
},
"excludes": [
"127.0.0.1",
"localhost"
],
"host": "127.0.0.1",
"port": 8080,
"pacUrl": "http://proxy.company.com/proxy.pac"
}