hubScanFoundDevices(commandId)

Arguments

commandId
ID!,non-nullrequired

Return type

hubDeviceId
ID!,non-null
deviceName
String!,non-null
deviceManufacturerName
String!,non-null
deviceImageSmallUrl
String!,non-null
serialNumber
String!,non-null
Query sample
query hubScanFoundDevices($commandId: ID!) {
  hubScanFoundDevices(commandId: $commandId) {
    hubDeviceId 
    deviceName 
    deviceManufacturerName 
    deviceImageSmallUrl 
    serialNumber 
  }
}
Variables
{ "commandId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4" }
Response sample
{ "data": [ { "hubDeviceId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "deviceName": "Example String", "deviceManufacturerName": "Example String", "deviceImageSmallUrl": "Example String", "serialNumber": "Example String" } ] }
Previous page