Device service
activateDeviceService
activateDeviceServiceimport { activateDeviceService, Identity } from "ims-react-native/src";
const identity = new Identity("API_KEY", "EXTERNAL_REFERENCE_ID");
activateDeviceService(identity).then((result: string) => {
console.log(result);
}).catch((error: Error) => {
console.log(error.message);
});deactivateDeviceService
deactivateDeviceServicefetchDeviceService
fetchDeviceServiceLast updated