signLogin (service)

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

API version: 1

Availability: DIGIPASS Gateway 4.1 and later

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

The signLogin service completes a pending push and login authentication.

URL

https://dpgateway_host:dpgateway_port/rest/push/signLogin

Request

signLogin parameters
Parameter name Data type Description
userID String Required. The unique identifier used by OneSpan Authentication Server to identify a user.
domain String Optional. The unique identifier used by OneSpan Authentication Server to identify a group user.
challengeKey String Required. The unique identifier used by OneSpan Authentication Server to identify a login request.
signature String Required. The signature generated with the Digipass SDK using the Secure Channel message containing the login details.

Example

{
  "userID": "myUserID",
  "domain": "myDomain",
  "serialNumber": "VDS1000000-1",
  "challengeKey": "1234567890",
  "signature": "1234567890123456"
}

Response

signLogin return values
Return value Data type Description
errorCode Integer The return code provided by OneSpan Authentication Server. 0 is returned in case of success.
errorMessage String

The error message provided by OneSpan Authentication Server. STAT_SUCCESS is returned in case of success.

Example

{
  "errorCode": 0,
  "errorMessage": "STAT_SUCCESS"
}