Was this helpful?
Retrieve settings for SBC.
/sbc
curl -L \ --url 'https://HOSTNAME:8887/api/sbc' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "domain": "text", "http_port": 8882, "https_port": 8883, "transports": [ { "protocol": "UDP", "port": 80 } ] }
Update SBC configuration.
The SBC domain.
The SBC web port for http.
The SBC web port fot https.
curl -L \ --request POST \ --url 'https://HOSTNAME:8887/api/sbc' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{"http_port":8882,"https_port":8883,"transports":[{"protocol":"UDP","port":80}]}'
No body