Download audit trail document
Thu, 8 Apr, 2021
The audit log for the signature completed document can be directly downloaded from the API. This audit trail document will contain information about the actions performed by the recipients of the document with time stamp.
The below mentioned code can be used to download the audit log document:
C#CURL
// This is an example document id, add your own document id upon usage.
var documentId = "949ebf20-45a8-4a3e-91a9-68e9540e0020";
var documentStream = this.DocumentClient.DownloadAuditLog(documentId);
curl -X GET 'https://api.boldsign.com/v1/document/downloadAuditLog?documentId=949ebf20-45a8-4a3e-91a9-68e9540e0020' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <authtoken>'