Notification.disablePush()

This API can be used to disable push notifications for the embedded mobile SDK.

PARAMETERS

  • token: Your application's FCM token.
  • isTestDevice: Whether it is a test build or release build.

Syntax:

CopiedZohoSalesIQ.Notification.disablePush(String token, boolean isTestDevice);

Example:

CopiedString token = FirebaseInstanceId.getInstance().getToken();
ZohoSalesIQ.Notification.disablePush(token,true);