GET api/accessrights/audit
Get the audit records of access rights changes for Eclair Portal
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of Audit Response
Collection of AuditEntryName | Description | Type | Additional information |
---|---|---|---|
AuditID |
Identifier of the audit entry |
integer |
None. |
Description |
Self-explanatory description for user to look at |
string |
None. |
ActorID |
The person that commit the changes |
integer |
None. |
ActorTitle |
The person's salutation (Mr, Mrs, Dr). |
string |
None. |
ActorFirstName |
The person's first name. |
string |
None. |
ActorLastName |
The person's last name. |
string |
None. |
ChangedOn |
The time recorded for when the changes happened |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AuditID": 1, "Description": "sample string 2", "ActorID": 3, "ActorTitle": "sample string 4", "ActorFirstName": "sample string 5", "ActorLastName": "sample string 6", "ChangedOn": "2025-04-04T12:23:02.7004474+11:00" }, { "AuditID": 1, "Description": "sample string 2", "ActorID": 3, "ActorTitle": "sample string 4", "ActorFirstName": "sample string 5", "ActorLastName": "sample string 6", "ChangedOn": "2025-04-04T12:23:02.7004474+11:00" } ]
application/xml, text/xml
Sample:
<ArrayOfAuditEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.AccessRights"> <AuditEntry> <ActorFirstName>sample string 5</ActorFirstName> <ActorID>3</ActorID> <ActorLastName>sample string 6</ActorLastName> <ActorTitle>sample string 4</ActorTitle> <AuditID>1</AuditID> <ChangedOn>2025-04-04T12:23:02.7004474+11:00</ChangedOn> <Description>sample string 2</Description> </AuditEntry> <AuditEntry> <ActorFirstName>sample string 5</ActorFirstName> <ActorID>3</ActorID> <ActorLastName>sample string 6</ActorLastName> <ActorTitle>sample string 4</ActorTitle> <AuditID>1</AuditID> <ChangedOn>2025-04-04T12:23:02.7004474+11:00</ChangedOn> <Description>sample string 2</Description> </AuditEntry> </ArrayOfAuditEntry>