cancelAuthUser (Command)

Prev Next

Scenario: Authentication

Support:  full-sdk   auth-sdk 

OneSpan Mobile Authenticator supports to reject an incoming authentication request based on Push Notification (push and login), which in turn triggers a request to OneSpan Authentication Server (via DIGIPASS Gateway) to cancel the pending authUser request.

This reject operation does not update or change the error or lock count of users or authenticators.

Parameters

  Table:  cancelAuthUser input parameters
Parameter nameData typeDescription
componentTypeStringRequired. Specifies the component for which the secure challenge was retrieved.
serialNumberStringRequired. The serial number of the authenticator that retrieved the prepared secure challenge.
challengeKeyMessageString

Required. The challenge key used to refer to the challenge generated during push and login (encrypted Secure Channel message).

Example

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Header/>
  <soapenv:Body>
    <aut:cancelAuthUser xmlns:prov="http://www.vasco.com/IdentikeyServer/IdentikeyTypes/Authentication">
      <componentType>Push Notification Client</componentType>
      <serialNumber>12345678</serialNumber>
      <challengeKeyMessage>ABCDEF010203</challengeKeyMessage>
    </aut:cancelAuthUser>
  </soapenv:Body>
</soapenv:Envelope>