curl --request POST \
--url https://api.example.com/service/{tenant_name}/wg_tunnel/{user_name}/{tunnel_id}/device_data \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"timestamp": 123,
"connection_type": "wired",
"ip_address": "<string>",
"router_ip": "<string>",
"tunnel_status": "connected",
"name": "<string>",
"ssid": "<string>",
"port_name": "<string>",
"ssid_trust_status": "trusted",
"ssid_security": "<string>",
"bssid": "<string>",
"channel": "<string>",
"rssi": "<string>",
"noise": "<string>",
"tx_rate": "<string>",
"phy_mode": "<string>"
}
'