hubScanFoundDevicesNotification(...args)

Arguments

commandId
ID!,non-nullrequired
commandStatus
foundDevices
HubScanFoundDevicesInput!,non-nullrequired

Return type

commandId
String!,non-null
devices
Mutation sample
mutation hubScanFoundDevicesNotification(
  $commandId: ID!
  $commandStatus: String
  $foundDevices: HubScanFoundDevicesInput!
) {
  hubScanFoundDevicesNotification(
    commandId: $commandId
    commandStatus: $commandStatus
    foundDevices: $foundDevices
  ) {
    commandId 
    devices {
      hubDeviceId 
      deviceName 
      deviceManufacturerName 
      deviceImageSmallUrl 
      serialNumber 
    }
    errors {
      message 
      path 
    }
  }
}
Variables
{ "commandId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "commandStatus": "Example String", "foundDevices": { "devices": [ { "hubDeviceId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "hubDeviceManufacturerName": "Example String", "hubDeviceModel": "Example String", "hubDeviceMacAddress": "Example String" } ], "errors": [ { "message": "Example String" } ] } }
Response sample
{ "data": { "commandId": "Example String", "devices": [ { "hubDeviceId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "deviceName": "Example String", "deviceManufacturerName": "Example String", "deviceImageSmallUrl": "Example String", "serialNumber": "Example String" } ], "errors": [ { "message": "Example String", "path": "Example String" } ] } }