Skip to main content

Notification.isSDKMessage()

Note: This API is supported from version 8.1.0

The ZohoSalesIQ.Notification.isSDKMessage() API returns a boolean value indicating whether the received push is a message from SalesIQ. 

Syntax

CopiedZohoSalesIQ.Notification.isSDKMessage(notificationPayload: object, callback: (isSDKNotification: boolean) => void);

Example

CopiedZohoSalesIQ.Notification.isSDKMessage(remoteMessage.data, (isSDKNotification) => {
    if (isSDKNotification) {

    }
  });