Update static IP
documentedSet or modify the device's static IP configuration.
PUT /static_ipWebex Shareno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{WEBEX_SHARE_BASE_URL}}/static_ip" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"static_ip": "{{$static_ip}}", "gateway": "{{$gateway}}", "subnet_mask": "{{$subnet_mask}}", "dns_domain_name": "{{$dns_domain_name}}", "dns_server_1": "{{$dns_server_1}}", "dns_server_2": "{{$dns_server_2}}", "dns_server_3": "{{$dns_server_3}}" }'