Skip to content
Seal
Esc
navigateopen⌘Jpreview

Get audit trail

Returns the complete activity log for a document, including when it was viewed, signed, completed, and any other notable events.

GET/signatures/audit
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Query parameters
document_idstringrequired
limitinteger
min 1 · max 100
Responses
200

OK

entriesAuditEntry[]
Show properties
Array of AuditEntry
idstringrequired
event_typestringrequired

Dot-separated action identifier, e.g. document.viewed, recipient.signed, document.completed

actor_emailstring<email>
actor_namestring
timestampstring<date-time>required
ip_addressstring
user_agentstring
detailsobject
401

Missing or invalid API key

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

404

Resource not found

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.seal.nyc/api/v1/signatures/audit?document_id=string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "entries": [
    {
      "id": "string",
      "event_type": "string",
      "actor_email": "user@example.com",
      "actor_name": "string",
      "timestamp": "2019-08-24T14:15:22Z",
      "ip_address": "string",
      "user_agent": "string",
      "details": {}
    }
  ]
}