API Guide

Table Of Contents
/api/ApplicationService/AuditLogCategories
This API represents information about audit log categories.
GET method for /api/ApplicationService/AuditLogCategories
This method returns the audit log categories.
Description Returns the audit log categories.
Privilege
HTTP response
code
200
Example
response body
{
"@odata.context": "/api/
$metadata#Collection(ApplicationService.AuditLogCategories)",
"@odata.count": 1,
"value":[
{
"@odata.type": "#ApplicationService.AuditLogCategories",
"Name": "Application",
"CategoriesDetails":[
{
"Name": "Audit",
"CatalogName": "",
"SubCategoryDetails":[{"Name": "CUSR", "Prefix": "CUSR", "Description":
"" }]
},
{
"Name": "Configuration",
"CatalogName": "",
"SubCategoryDetails":[{"Name": "CJOB", "Prefix": "CJOB", "Description":
"" },]
}
]
}
]
}
/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
response body
{
"@odata.context": "$metadata#Collection(ApplicationService.AuditLog)",
"@odata.count": 7,
"value": [
{
"@odata.id": "/api/ApplicationService/AuditLogs(7)",
"Id": 7,
Monitor 337