GET Users/ListAuthenticationAudits

Returns an IQueryable List of Audit Events for a Users

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A Queryable list of UserAuthenticationDTO

Collection of UserAuthenticationDTO
NameDescriptionTypeAdditional information
ID

The ID of the Authentication Item

globally unique identifier

None.

UserID

The ID of the User

globally unique identifier

None.

Success

If the Authentication was successful or failure

boolean

None.

Description

The Description of the Authentication event

string

None.

IPAddress

The IP Address that originated the Request

string

None.

Environment

The Enviorment that triggered the Authentication

string

None.

Source

The API Endpoint that was hit if the Environment is DataMart Client

string

None.

Details

The Details of the Audit.

string

None.

DMCVersion

The DMC Version that was used if the Environment is DataMart Client

string

None.

DateTime

The Time the Authentication was triggered

date

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ID": "2d01a672-8761-4bbe-b8f6-ae978346cf8f",
      "UserID": "1fc78565-67fb-48c4-bbbe-0e61d01f57d7",
      "Success": true,
      "Description": "sample string 4",
      "IPAddress": "sample string 5",
      "Environment": "sample string 6",
      "Source": "sample string 7",
      "Details": "sample string 8",
      "DMCVersion": "sample string 9",
      "DateTime": "2024-05-13T16:55:27Z"
    },
    {
      "ID": "2d01a672-8761-4bbe-b8f6-ae978346cf8f",
      "UserID": "1fc78565-67fb-48c4-bbbe-0e61d01f57d7",
      "Success": true,
      "Description": "sample string 4",
      "IPAddress": "sample string 5",
      "Environment": "sample string 6",
      "Source": "sample string 7",
      "Details": "sample string 8",
      "DMCVersion": "sample string 9",
      "DateTime": "2024-05-13T16:55:27Z"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ID":"2d01a672-8761-4bbe-b8f6-ae978346cf8f","UserID":"1fc78565-67fb-48c4-bbbe-0e61d01f57d7","Success":true,"Description":"sample string 4","IPAddress":"sample string 5","Environment":"sample string 6","Source":"sample string 7","Details":"sample string 8","DMCVersion":"sample string 9","DateTime":"2024-05-13T16:55:27Z"},{"ID":"2d01a672-8761-4bbe-b8f6-ae978346cf8f","UserID":"1fc78565-67fb-48c4-bbbe-0e61d01f57d7","Success":true,"Description":"sample string 4","IPAddress":"sample string 5","Environment":"sample string 6","Source":"sample string 7","Details":"sample string 8","DMCVersion":"sample string 9","DateTime":"2024-05-13T16:55:27Z"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfUserAuthenticationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <UserAuthenticationDTO>
    <DMCVersion>sample string 9</DMCVersion>
    <DateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-05-13T20:55:27.7006605Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>-240</d3p1:OffsetMinutes>
    </DateTime>
    <Description>sample string 4</Description>
    <Details>sample string 8</Details>
    <Environment>sample string 6</Environment>
    <ID>2d01a672-8761-4bbe-b8f6-ae978346cf8f</ID>
    <IPAddress>sample string 5</IPAddress>
    <Source>sample string 7</Source>
    <Success>true</Success>
    <UserID>1fc78565-67fb-48c4-bbbe-0e61d01f57d7</UserID>
  </UserAuthenticationDTO>
  <UserAuthenticationDTO>
    <DMCVersion>sample string 9</DMCVersion>
    <DateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-05-13T20:55:27.7006605Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>-240</d3p1:OffsetMinutes>
    </DateTime>
    <Description>sample string 4</Description>
    <Details>sample string 8</Details>
    <Environment>sample string 6</Environment>
    <ID>2d01a672-8761-4bbe-b8f6-ae978346cf8f</ID>
    <IPAddress>sample string 5</IPAddress>
    <Source>sample string 7</Source>
    <Success>true</Success>
    <UserID>1fc78565-67fb-48c4-bbbe-0e61d01f57d7</UserID>
  </UserAuthenticationDTO>
</ArrayOfUserAuthenticationDTO>