get
https://api.vanta.com/v1/audits//information-requests//activity
Retrieves a paginated list of activity logs for an information request, providing a complete audit trail of all changes and actions.
This endpoint supports delta synchronization via the changedSinceDate parameter,
allowing efficient polling for changes without retrieving the entire dataset.
Pagination usage:
- Make initial request with desired
pageSize - Check
results.pageInfo.hasNextPageto see if more data exists - If true, use
results.pageInfo.endCursoraspageCursorin next request - Repeat until
hasNextPageis false
Delta sync usage:
- Store the timestamp of your last sync
- Pass that timestamp as
changedSinceDate - Only activity created since that timestamp is returned
- Process updates to track all changes to the information request
- Update your last sync timestamp to the current time
