logout
Disassociate a device from a customer identifier.
Use this method to disconnect the association between a user's device and a customer identifier. For example, do this when the user logs out of their account within your app.
NamiCustomerManager.logout()NamiCustomerManager.logout()NamiCustomerManager.logout();const onLogoutPress = useCallback(() => {
NamiCustomerManager.logout((success, error) => {
console.log('success', success);
console.log('error', error);
});
}, []);NamiCustomerManager.Logout();Last updated