The OneSpan Mobile Authenticator app must update OneSpan Authentication Server data when the DIGIPASS Push Notification Identifier (PNID) of the device changes. The updateDevicePNID command is used to update the PNID associated with a specific device.
Parameters
| Parameter name | Data type | Description |
|---|---|---|
| componentType | String | Required. Specifies the client component to serve the request. |
| user | UserInput | Required. The user input information (see UserInput (Data type)). This specifies the user to be authenticated for the provisioning operation. |
| serialNumber | String | Required. The serial number of the authenticator associated with the device PNID. |
| devicePNID | Hexadecimal String | Required. The PNID of a mobile device encoded as encrypted secure channel message. Maximum 1070+1 characters. |
UserInput (Data type)
| Element name | Data type | Description |
|---|---|---|
| userID | String | The user ID. |
| domain | String | Optional. The user domain. |
Example
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> <soapenv:Body> <prov:updateDevicePNID xmlns:prov="http://www.vasco.com/IdentikeyServer/IdentikeyTypes/Provisioning"> <componentType>Push Notification Client</componentType> <user> <userID>user1</userID> <domain>Master</domain> </user> <serialNumber>12345678</serialNumber> <devicePNID>ABCDEF010203</devicePNID> </prov:updateDevicePNID> </soapenv:Body> </soapenv:Envelope>