updateNotificationID (service) [v1]

This command is deprecated! Use updateNotificationID (service) [v2] instead!

API version: 1

Availability: DIGIPASS Gateway 4.1 and later

Authentication: Basic HTTP authentication using the front-end API key.

The updateNotificationID service updates the push notification identifier (PNID) of a specific authenticator.

URL

https://dpgateway_host:dpgateway_port/rest/notification /updateNotificationID

Request

updateNotificationID parameters
Parameter name Data type Description
digipassInstanceID String Required. The identifier of the authenticator instance to update.
domain String Required. The domain of the user.
encryptedNotificationID String Required. The notification identifier to set as encrypted Secure Channel message.
userID String Required. The user name.

Parameter names are case-sensitive.

Example

{
  "userID": "jane.doe",
  "domain": "myDomain.com",
  "digipassInstanceID": "VDS1000001-1",
  "encryptedNotificationID": "0901C3E40F42B8112D690D2E8E11105BD156E89D..."
}

Response

updateNotificationID return values
Return value Description
resultCodes A JSON object that contains the return and status codes of the service.

Example

{
  "resultCodes":
    {
      "returnCodeEnum": "RET_SUCCESS",
      "statusCodeEnum": "STAT_SUCCESS",
      "returnCode": 0,
      "statusCode": 0
    }
}