Retrieving Audit Trails
A document’s Audit Trail contains the digital certificate used to sign, as well as the signature block image, time stamp, and unique signer identification information. The document and the e-signatures it contains are tamper-sealed with a digital signature to guarantee the integrity and authenticity of the e-signed record. Especially relevant in a multi-signer process, Sign independently time stamps and locks down each signature and any data entered by each signer independently of the others. So when you review the audit trail even years later, it is clear who signed what, in what order, at what time, etc.
To retrieve the audit trail of a package, you will need the PackageId, which is returned to you during package creation.
HTTP Request
GET <host domain>/api/sign/v1/cs-packages/{packageId}/audit
HTTP Headers
Accept: application/json Content-Type: application/json Authorization: Bearer access_token
Response Payload
{ "package-id": "c2e57376-7391-4559-8da9-5d0ed4a24c56", "audit-events": [ { "type": "Signing Session For Signer", "date-time": "2016-04-20 14:14:51", "target": "signing url group", "user": "somegroup", "user-email": "9fe0d028-0572-4731-8520-99191340d78f@groups.congamerge.com", "user-ip": "11.11.111.111", "data": "Signing session to signer : 9fe0d028-0572-4731-8520-99191340d78f@groups.congamerge.com(somegroup" }, { "type": "View", "date-time": "2016-04-20 14:14:54", "target": "doc1", "user": "somegroup", "user-email": "9fe0d028-0572-4731-8520-99191340d78f@groups.congamerge.com", "user-ip": "11.11.111.111", "data": null }, { "type": "Click To Sign", "date-time": "2016-04-20 14:23:31", "target": "doc1", "user": "somegroup", "user-email": "9fe0d028-0572-4731-8520-99191340d78f@groups.congamerge.com", "user-ip": "11.11.111.111", "data": "Approval: FAPOezPt0H8E" }, { "type": "View", "date-time": "2016-04-20 15:20:47", "target": "doc1", "user": "John Smith", "user-email": "csa.signer1@example.com", "user-ip": "11.11.111.111", "data": null }, { "type": "View", "date-time": "2016-04-20 15:23:52", "target": "doc1", "user": "John Smith", "user-email": "csa.signer1@example.com", "user-ip": "11.11.111.111", "data": null }, { "type": "View", "date-time": "2016-04-20 15:44:41", "target": "doc1", "user": "John Smith", "user-email": "csa.signer1@example.com", "user-ip": "11.11.111.111", "data": null }, { "type": "View", "date-time": "2016-04-20 15:44:47", "target": "doc1", "user": "John Smith", "user-email": "csa.signer1@example.com", "user-ip": "11.11.111.111", "data": null } ] }