GET 1.0/{InstanceId}/Documents/{DocumentId}/AuditEvents/{EventId}
Retrieves an individual Audit Event for the specified Document ID and Audit Event ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| InstanceId |
The instance ID relating to a specific ADM database |
string |
Required |
| DocumentId |
The ID of the document whose audit event is to be retrieved |
integer |
Required |
| EventId |
The ID of the audit event to be retrieved |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AuditEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The ID of the audit event |
integer |
None. |
| TimeStamp |
The date / time that the audit event was created |
date |
None. |
| OwnerUserId |
The user responsible for the creation of the audit event |
integer |
None. |
| OwnerCloudGUID |
The GUID of the user responsible for the creation of the event |
string |
None. |
| Description |
The description of the audit event |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"TimeStamp": "2025-11-13T01:21:29.0488741+00:00",
"OwnerUserId": 3,
"OwnerCloudGUID": "sample string 4",
"Description": "sample string 5"
}