Get Audit Logs
get audit logs based on filters specified in query
Request
URI
POST
https://{api_host}/api/ni/logs/audit
COPY
Request Body
Query Filters
AuditRequest of type(s) application/json
Required
{
"user_name": "admin@local",
"ip_address": "192.168.0.1",
"entity_type": "VCenterDataSource",
"entity_id": "18230:3:187309184",
"operation": "UPDATE",
"response": "string",
"size": 0,
"cursor": "MTA=",
"time_range": {
"start_time": 1597247025,
"end_time": 1597247999
}
}
string
user_name
Optional
Username making the change
string
ip_address
Optional
Client IP that is making the change
string
entity_type
Optional
Entity Type of object being changed
string
entity_id
Optional
Entity ID of object being changed
string
operation
Optional
Operation on object being changed
string
response
Optional
Response from Operations for Networks, whether it's successfull or not
integer As int32 As int32
size
Optional
size
string
cursor
Optional
Cursor for the next page of logs
Responses
200
OK
Returns AuditListResponse of type(s) application/json
{
"results": [
{
"ip_address": "string",
"user_name": "string",
"entity_type": "string",
"entity_id": "string",
"operation": "string",
"response": "string",
"value": "string",
"timestamp": 0
}
],
"cursor": "ML12eu02==",
"start_time": 1504739809,
"end_time": 1504739809
}
string
cursor
Optional
Cursor for the next page of logs
integer As int64 As int64
start_time
Optional
Start timestamp of the window of the objects returned
integer As int64 As int64
end_time
Optional
End timestamp of the window of the objects returned
400
Bad Request
Returns ApiError of type(s) application/json
{
"code": 0,
"message": "string",
"details": [
{
"code": 0,
"message": "string",
"target": [
"string"
]
}
]
}
integer As int32 As int32
code
Optional
code
string
message
Optional
message
401
Unauthorized
Operation doesn't return any data structure
500
Internal Error
Operation doesn't return any data structure
Logs Operations
POST
Get Audit Logs