API3 min read
Audit Logs API
Query audit trail for compliance and debugging
Base URL
text
https://app.conexor.io/api/audit-logs
List Audit Logs
GET /api/audit-logsQuery Parameters
| Parameter | Type | Description |
|---|---|---|
| action | string | Filter by action type |
| resourceType | string | Filter by resource type |
| userId | uuid | Filter by user |
| from | ISO 8601 | Start date |
| to | ISO 8601 | End date |
| page | int | Page number (default 1) |
| pageSize | int | Items per page (default 20, max 100) |
json
{
"data": [
{
"id": "uuid",
"timestamp": "2026-02-23T10:00:00Z",
"action": "QueryExecuted",
"userEmail": "[email protected]",
"model": "claude-opus-4-5",
"pluginId": "uuid",
"dataSourceId": "uuid",
"queryTemplateHash": "A3F9C21B",
"parameterCount": 2,
"rowCount": 42,
"executionTimeMs": 18,
"success": true
}
],
"pagination": {
"page": 1,
"pageSize": 20,
"total": 150
}
}Common Actions
user.loginUser logged in
user.createdUser invited
agent.createdAgent registered
agent.connectedAgent connected via SignalR
tool.createdTool definition created
tool.executedTool was called
server.api_key_createdAPI key generated
schema.discoveredSchema refresh completed