Description
Users attempting to export audit reports via the web interface encounter a 1000 row CSV limit. This is a product design constraint. To obtain larger datasets (e.g., full-year usage/access logs), use the POST /history/search API, which supports date-bounded queries (up to 1 month per request), filtering by user/action/entity, and pagination via export offsets. Results can be retrieved sequentially and combined externally.
Solution
Use the API instead of the UI export:
- Access the Signals Notebook Swagger page to locate POST /history/search.
- Query audit history in date ranges up to 1 month per request.
- Apply filters (user, action, entity type) as needed to narrow results.
- Use pagination parameters to retrieve results sequentially beyond 1000 entries.
- Iterate requests month-by-month (or smaller intervals if needed) to cover the desired timeframe (e.g., a full year).
- For large responses, use an external IDE or scripting tool (e.g., Postman or a custom script) to automate requests and handle pagination.
- Aggregate all retrieved data and export to CSV in your external tool.
Comments
0 comments
Article is closed for comments.