List code changes for an audit
Retrieves code changes population data for an audit.
This endpoint provides access to code change records (pull requests) visible to auditors during an audit engagement.
Supports filtering by:
search: Searches code change titles and repository names (case-insensitive)sourcesMatchesAny: Filters by version control source (accepted values: github, gitlab, bitbucket, azuredevops)startDate/endDate: Filters by the closed date range
Uses cursor-based pagination. To paginate:
- Make initial request with desired
pageSize - Check
results.pageInfo.hasNextPage - Use
results.pageInfo.endCursoraspageCursorfor next request
Results are sorted by closed date (newest first). This sort order is fixed and cannot be customized via query parameters.
Documentation Index
Fetch the complete documentation index at: https://developer.vanta.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The audit ID
Query Parameters
Maximum number of results per page (1-100, default 10) Controls the maximum number of items returned in one response from the API.
1 <= x <= 100Pagination cursor from previous response 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.
Search term for filtering by code change title or repository name
Filter code changes by version control source (accepted values: github, gitlab, bitbucket, azuredevops)
Version control source service name for code changes.
github, gitlab, bitbucket, azuredevops Filter code changes closed on or after this date (ISO 8601)
Filter code changes closed on or before this date (ISO 8601)
Response
Paginated list of code changes with pagination metadata