API Guide
/api/ApplicationService/AuditLogs(Id)
This URI represents a specific audit log within the collection.
GET method for AuditLogs(Id)
This method returns the details of a specific event or error message.
Description Returns the details of a specific event or error message.
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "$metadata#Collection(ApplicationService.AuditLog)",
"@odata.count": 7,
"value": [
{
"@odata.id": "/api/ApplicationService/AuditLogs(7)",
"Id": 7,
"Severity": "1000",
"Message": "Successfully logged in.",
"Category": "Audit",
"UserName": "root",
"IpAddress": "10.210.136.38",
"MessageArgs": "root || 10.210.136.38",
"MessageID": "CUSR0001",
"CreatedDate": "2017-04-26 16:13:57.880"
}
Table 99. Attributes
Attribute Description
Id Identifier of the SessionService.
Severity Severity of the event or error message. Possible values are Critical,
Warning, and Informational.
Message Message text.
Category Category of the message.
UserName Authenticated user who generated the message.
IpAddress IP address of the authenticated user.
MessageArgs Message parameters associated with the message.
MessageID Message identifier.
CreatedDate Date on which the message was generated.
Monitor 227