API - Signer IP Address
Thursday, June 30, 2022 at 10:08amGood morning! Is there a method to retrieve the IP address of a signer via API or otherwise?
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Good morning! Is there a method to retrieve the IP address of a signer via API or otherwise?
Reply to: API - Signer IP Address
Tuesday, July 5, 2022 at 01:34pmHi Peter,
You can consume below API which retrieves the signer's audit events:
GET /api/packages/{packageId}/audit
The response payload could look like below, which includes signer's IP address:
{
"package-id": "52QCQpMRKdnxtN7XThnjrhCd0OY=",
"audit-events": [
{
"type": "Login",
"date-time": "2022-07-05 17:53:35",
"target": "EMAIL_LINK",
"target-type": "AuthMethod",
"user": "Duo Liang",
"user-email": "[email protected]",
"user-ip": "17x.2xx.xx.1xx",
"data": ""
},
......
]
}
Duo