This function get the current Profishark firmware update status for the input Profishark device.
Method: POST
Data Params:
{
"device": {
"mac":"some_mac",
"model":"some_model",
"friendly_name":"some_friendly_name"
}
}{
"command": "/getProfisharkFirmwareUpdateStatus",
"command_result": {
"profisharks": [{
"model": "SomeModel",
"friendly_name": "SomeFriendlyName",
"mac": "SomeMac",
"model_id":"some_model_id"
}],
"firmware_updates": [
"firmware_update":{
"start_success": false,
"update_in_progress": true,
"update_progress": 42,
"update_success": true
}
]
},
"errors": false,
"general_message": "Successfully retrieved Profishark firmware update status"
}