CancelNotification()

Description:

The CancelNotification method cancels notification of new incoming messages.

This is a synchronous method.

Syntax:

CancelNotification(parameters:Object):Object

Arguments:

  • parameters:

    This is an object that specifies the request for cancelling notification of new messages. The object must contain the Type property (string), and this property must contain the value "NewMessage":

    parameters.Type = "NewMessage";

Return value:

The CancelNotification method returns an object that contains an error code and an error message.

Table: Return value properties for CancelNotification

Property

Description

Value

ErrorCode

This is a number that specifies a predefined error code.

See Service API error codes.

ErrorMessage

This is a text string that describes the error.

Example code:

The following sample code illustrates the use of CancelNotification:

import com.nokia.lib.Service;
var messaging = new Service("Service.Messaging", "IMessaging");
var inParams = {Type:"NewMessage"};
var outParams = messaging.CancelNotification(inParams);
var errorId = outParams.ErrorCode;//various possible errorcodes