unregisterForNotificationTypes( callback ) method

Function called by the application to unregister from future notifications.

Syntax

<static> unregisterForNotificationTypes( callback )

Parameters

Name Type Description
callback function Success callback to call when deregistration is successful.This callback function will contain a string with a message. This message is just for informative purpose.

Example

function unregCallback(mesg){}
sap.Push.unregisterForNotificationTypes(unregCallback);

Source

push.js, line 243.