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

Peter Herzog | Posts: 113

API - Signer IP Address

0 votes

Good morning! Is there a method to retrieve the IP address of a signer via API or otherwise?


Duo Liang | Posts: 3778

Reply to: API - Signer IP Address

0 votes

Hi 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


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off