v1

latestOpenAPI 3.0.1Vanta Terms of Service2026-07-26327517821.8 KB
Audits

List information request 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:

  1. Make initial request with desired pageSize
  2. Check results.pageInfo.hasNextPage to see if more data exists
  3. If true, use results.pageInfo.endCursor as pageCursor in next request
  4. Repeat until hasNextPage is false

Delta sync usage:

  1. Store the timestamp of your last sync
  2. Pass that timestamp as changedSinceDate
  3. Only activity created since that timestamp is returned
  4. Process updates to track all changes to the information request
  5. Update your last sync timestamp to the current time

Rate limit: 50 requests / minute.

get/audits/{auditId}/information-requests/{requestId}/activity

Path parameters

auditIdstring required
requestIdstring required

Query parameters

pageSizeinteger

Controls the maximum number of items returned in one response from the API.

Maximum number of activity entries to return per page.

pageCursorstring

A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.

Pagination cursor from a previous response. Provide to fetch the next page of activity logs.

changedSinceDatestring date-time

Includes activity logs that have changed since changedSinceDate.

Response

Ok