Skip to main content

Gets the device Wi-Fi connection list

GET /v1/devicewificonnection/list/{deviceID}

Summary

Gets the device Wi-Fi connection list.

Details

Returns a custom list of Wi-Fi connection objects for the device.

Authentication

No operation-level security requirement is documented here.

Parameters

NameInTypeRequiredDescriptionExample
deviceIDpathinteger (int64)YesThe ID of the device whose Wi-Fi connections should be returned.1

Request Body

No request body is documented here.

Responses

200

Success

application/json

  • array of DeviceWifiConnection
    • key (integer (int64), optional)
    • deviceID (integer (int64), optional)
    • wifiConnectionID (integer (int64), optional)
    • priority (integer (int64), optional)
    • creationDate (string (date-time), optional)

Example

[
{
"key": 1,
"deviceID": 201,
"wifiConnectionID": 1,
"priority": 1,
"creationDate": "2026-03-30T12:00:00.0000000Z"
}
]