Posts: 36 demellor Has Signer Downloaded Thursday, April 22, 2021 at 10:05am 0 votes Is there a way using the API to tell if the SENDER has downloaded the transaction? We want to check before we enable the 120 day retention rule Richard DeMello April 22 Created October 4 Last Updated 12 months ago Last Reply 1 Replies 7 Views 2 Users 0 Likes 0 Links Posts: 3586 Duo_Liang Reply to: Has Signer Downloaded Tuesday, October 4, 2022 at 02:06pm 0 votes Hi Richard, Try to pull the audit events via the API: GET /api/packages/{packageId}/audit Or SDK function: List<Audit> myaudit = eslClient.AuditService.GetAudit(packageId); Below is an example response, where I as a sender has downloaded the zipped file: { "package-id": "07YTkf-tiKA0IBdIm5hvAI-cPzE=", "audit-events": [ { "type": "Download Zip", "date-time": "2021-04-22 15:51:03", "target": "07YTkf-tiKA0IBdIm5hvAI-cPzE=", "target-type": "Package", "user": "duo Liang", "user-email": "[email protected]", "user-ip": "17x.2xx.6x.1xx", "data": "" } ] } The attributes that may interest you are the: "type" - either it's download zip or download signed documents one by one "date-time" - after package completion and before package get purged "user-email" - should be sender's email Duo Duo Liang OneSpan Evangelism and Partner Integrations Developer Log in or register to post comments
Posts: 3586 Duo_Liang Reply to: Has Signer Downloaded Tuesday, October 4, 2022 at 02:06pm 0 votes Hi Richard, Try to pull the audit events via the API: GET /api/packages/{packageId}/audit Or SDK function: List<Audit> myaudit = eslClient.AuditService.GetAudit(packageId); Below is an example response, where I as a sender has downloaded the zipped file: { "package-id": "07YTkf-tiKA0IBdIm5hvAI-cPzE=", "audit-events": [ { "type": "Download Zip", "date-time": "2021-04-22 15:51:03", "target": "07YTkf-tiKA0IBdIm5hvAI-cPzE=", "target-type": "Package", "user": "duo Liang", "user-email": "[email protected]", "user-ip": "17x.2xx.6x.1xx", "data": "" } ] } The attributes that may interest you are the: "type" - either it's download zip or download signed documents one by one "date-time" - after package completion and before package get purged "user-email" - should be sender's email Duo Duo Liang OneSpan Evangelism and Partner Integrations Developer Log in or register to post comments
Reply to: Has Signer Downloaded
Tuesday, October 4, 2022 at 02:06pmHi Richard,
Try to pull the audit events via the API:
GET /api/packages/{packageId}/audit
Or SDK function:
List<Audit> myaudit = eslClient.AuditService.GetAudit(packageId);
Below is an example response, where I as a sender has downloaded the zipped file:
{
"package-id": "07YTkf-tiKA0IBdIm5hvAI-cPzE=",
"audit-events": [
{
"type": "Download Zip",
"date-time": "2021-04-22 15:51:03",
"target": "07YTkf-tiKA0IBdIm5hvAI-cPzE=",
"target-type": "Package",
"user": "duo Liang",
"user-email": "[email protected]",
"user-ip": "17x.2xx.6x.1xx",
"data": ""
}
]
}
The attributes that may interest you are the:
"type" - either it's download zip or download signed documents one by one
"date-time" - after package completion and before package get purged
"user-email" - should be sender's email
Duo
Duo Liang OneSpan Evangelism and Partner Integrations Developer