MdlActivate (service) [v2]

API version: 2

Availability: DIGIPASS Gateway 5.0 and later

Authentication: The service is secured by the back-end and front-end API key.

The MdlActivate service validates the confirmation code generated by the authenticator and finalizes the activation process.

URL

https://dpgateway_host:dpgateway_port/rest/v2/provisioning/MdlActivate

Request

MdlActivate parameters
Parameter name Data type Description
registrationIdentifier String Required. The unique identifier of a user for a given activation process.
signature String Required. The signature generated by the mobile application using the Digipass SDK. This is needed for validation purposes.

Example

{
  "registrationIdentifier": "myRegistrationID",
  "signature": "1234567890123456"
}

Response

MdlActivate return values
Return value Description
resultCodes A JSON object that contains the return and status codes of the service.
result A JSON object that contains the user information.

Example

{
  "resultCodes":
    {
      "returnCodeEnum": "RET_SUCCESS",
      "statusCodeEnum": "STAT_SUCCESS",
      "returnCode": 0,
      "statusCode": 0
    },
  "result":
    {
      "userID": "jane.doe",
      "domain": "myDomain.com",
      "serialNumber": "VDS1000003"
    }
}