demellor | Posts: 52 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 April 22 Created October 4 Last Updated 3 years ago Last Reply 1 Replies 27 Views 2 Users 0 Likes 0 Links Duo_Liang | Posts: 3777 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 Log in or register to post comments
Duo_Liang | Posts: 3777 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 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