Manually refresh system network information including IP address, gateway, and MAC address. Reads current network configuration from the system and updates the database.Use cases:
After network configuration changes
When IP address changes (DHCP renewal)
Troubleshooting network connectivity issues
Request
Authorization
Basic Auth
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
or
API Key
Add parameter in header
X-Session-Token
Example:
X-Session-Token: ********************
or
Responses
🟢200OK
application/json
Network information refreshed successfully
Body
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST '/system/network/refresh' \
--header'Authorization: Basic <encoded-value>'