Get audit logs for an operator
GET/v1/operator/:id/logs
Get audit logs for an operator based on UUID
Request
Path Parameters
id stringrequired
Operator UUID
Query Parameters
type string
Log types requested separated by commas and no spaces in between. Possible Values: (add_object, updates)
token string
Pagination token
time string
Logs to retrieve up until that time, preferred format ISO 8601 standard
Responses
- 200
- 400
- 404
- 500
OK
- text/plain
- Schema
- Example (from schema)
Schema
- Array [
- ]
entity_id string
logs object[]
metadata object
property name* any
time_created string
type string
time string
token string
type string[]
{
"entity_id": "string",
"logs": [
{
"metadata": {},
"time_created": "string",
"type": "string"
}
],
"time": "string",
"token": "string",
"type": [
"string"
]
}
Bad Request
- text/plain
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Not Found
- text/plain
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Internal Server Error
- text/plain
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Loading...