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 } } }
{ "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" } ] } }
{ "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" } ] } }