Airwatch Rest API for Reboot Device

370 views Asked by At

My question is regarding the Airwatch Rest API. Is there any command(API) available for rebooting the device in Airwatch Rest API(Programmatically), like Lock, OsUpdate, etc.

Thanks, MR

1

There are 1 answers

0
Arvind Chourasiya On

There is no Airwatch API available to reboot device but this could be done by programming. You can use EmdkWrapper Extension for Zebra, Honeywell and Motorola devices and for Samsung you can use few other libraries.

public bool RebootDevice()
{
    return EmdkWrapper.current.SetProfile();
}