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 AuditEntry
NameDescriptionTypeAdditional 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": "2024-09-29T16:29:58.5172972+10:00"
  },
  {
    "AuditID": 1,
    "Description": "sample string 2",
    "ActorID": 3,
    "ActorTitle": "sample string 4",
    "ActorFirstName": "sample string 5",
    "ActorLastName": "sample string 6",
    "ChangedOn": "2024-09-29T16:29:58.5172972+10: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>2024-09-29T16:29:58.5172972+10: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>2024-09-29T16:29:58.5172972+10:00</ChangedOn>
    <Description>sample string 2</Description>
  </AuditEntry>
</ArrayOfAuditEntry>