Skip to main content

AuditLogItem

An AuditLogItem is a single entry in a Document's audit trail. It records actions taken on the document including who performed them, when, and from which IP address.

Fields

FieldTypeDescription
idString!Unique identifier
nameStringName of the person who performed the action
emailStringEmail of the person
statusStringStatus at time of action
descriptionStringHuman-readable description of the action
createdAWSDateTimeWhen the action occurred
codeStringAction code
ipStringIP address

Query

AuditLogItems are accessed as a field on Document:

query GetDocumentAuditLog {
document(id: "ZG9jMWVmMjdkYWYtMGJlMS0xMWYwLWJiYjUtMDZlNDc2YTA3NTY5") {
auditLog {
created
description
name
email
status
code
ip
}
}
}
  • Document — the document this audit log belongs to

Export This Article

Save a copy of this page as PDF or plain text.