AuditTrailResponse

Paginated audit trail records from the Control Room

Properties

Name Type Description
totalRecords integer Total number of audit records available from the start date
auditData array List of audit trail records
View JSON Schema on GitHub

JSON Schema

automation-anywhere-audittrailresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditTrailResponse",
  "title": "AuditTrailResponse",
  "type": "object",
  "description": "Paginated audit trail records from the Control Room",
  "properties": {
    "totalRecords": {
      "type": "integer",
      "description": "Total number of audit records available from the start date"
    },
    "auditData": {
      "type": "array",
      "description": "List of audit trail records",
      "items": {
        "$ref": "#/components/schemas/AuditRecord"
      }
    }
  }
}