peterzog | Posts: 109 API - Signer IP Address Thursday, June 30, 2022 at 10:08am 0 votes Good morning! Is there a method to retrieve the IP address of a signer via API or otherwise? June 30 Created June 30 Last Updated 2 years ago Last Reply 1 Replies 91 Views 2 Users 0 Likes 0 Links Duo_Liang | Posts: 3776 Reply to: API - Signer IP Address Tuesday, July 5, 2022 at 01:34pm 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 Log in or register to post comments
Duo_Liang | Posts: 3776 Reply to: API - Signer IP Address Tuesday, July 5, 2022 at 01:34pm 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 Log in or register to post comments
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