Seeing inconsistency in START_LOST_MODE in android management api
Hi,
I'm implementing the START_LOST_MODE for my organization. The command works and I see the notification on the device saying that its a lost device. If the user doesn't do anything on the device, we can send the STOP_LOST_MODE and START_LOST_MODE again and it works as expected. But if the user takes some action on the device to unlock or select not my device. Then none of the `START_LOST_MODE` commands work again. Is there a limit to how many times this command can be used? Below is the response I get for GET /operation for the issue command.
{
"name": "enterprises/LC02ot****/devices/3e4aa95e427****/operations/1701195873812",
"metadata": {
"@type": "type.googleapis.com/google.android.devicemanagement.v1.Command",
"type": "START_LOST_MODE",
"createTime": "2023-11-28T18:24:33.812Z",
"duration": "3600s",
"userName": "enterprises/LC02ot****/users/10750409941529692****",
"startLostModeParams": {
"lostStreetAddress": {
"localizedMessages": {
"en-US": "1800 Amphibious Blvd. Mountain View, CA 94045"
},
"defaultMessage": "1800 Amphibious Blvd. Mountain View, CA 94045"
},
"lostOrganization": {
"localizedMessages": {
"en-US": "Example Organisation"
},
"defaultMessage": "Example Organisation"
}
}
}
}