GET Reports API
Overview
The Reports API returns summarized audit data for dashboards, BI tools, scheduled reports, and external analytics.
Endpoint
GET https://your-rise-domain.com/api/rise-log/reports
Example request
curl -X GET "https://your-rise-domain.com/api/rise-log/reports?type=summary&date_from=2026-05-01&date_to=2026-05-31" \
-H "Accept: application/json" \
-H "X-RLP-API-Key: YOUR_API_KEY"
Example response
{
"success": true,
"data": {
"total_events": 1250,
"updated_events": 540,
"deleted_events": 22,
"failed_logins": 34,
"top_entities": [
{"entity_type": "tasks", "count": 430},
{"entity_type": "invoices", "count": 120}
],
"top_users": [
{"user_id": 3, "name": "Demo Admin", "count": 220}
]
}
}
Important
Reports are summaries. Use the raw Activity/Auth/View endpoints when you need investigation evidence.

