search-audits
Query Descope project audit logs with filters for login IDs, actions, tenants, authentication methods, and geographic locations to monitor user activity and security events.
Instructions
Search Descope project audit logs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| loginIds | No | Filter by specific login IDs | |
| actions | No | Filter by specific action types | |
| excludedActions | No | Actions to exclude from results | |
| tenants | No | Filter by specific tenant IDs | |
| noTenants | No | If true, only show events without tenants | |
| methods | No | Filter by authentication methods | |
| geos | No | Filter by geographic locations | |
| hoursBack | No | Hours to look back (max 720 hours / 30 days) | |
| limit | No | Number of audit logs to fetch (max 10) |
Input Schema (JSON Schema)
{
"properties": {
"actions": {
"description": "Filter by specific action types",
"items": {
"type": "string"
},
"type": "array"
},
"excludedActions": {
"description": "Actions to exclude from results",
"items": {
"type": "string"
},
"type": "array"
},
"geos": {
"description": "Filter by geographic locations",
"items": {
"type": "string"
},
"type": "array"
},
"hoursBack": {
"default": 24,
"description": "Hours to look back (max 720 hours / 30 days)",
"maximum": 720,
"minimum": 1,
"type": "number"
},
"limit": {
"default": 5,
"description": "Number of audit logs to fetch (max 10)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"loginIds": {
"description": "Filter by specific login IDs",
"items": {
"type": "string"
},
"type": "array"
},
"methods": {
"description": "Filter by authentication methods",
"items": {
"type": "string"
},
"type": "array"
},
"noTenants": {
"description": "If true, only show events without tenants",
"type": "boolean"
},
"tenants": {
"description": "Filter by specific tenant IDs",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}