List evidence for an information request
Retrieves a paginated list of all evidence attached to an information request, enabling auditors to review evidence submitted by customers.
This endpoint always includes soft-deleted records (where deletionDate !== null). Clients should check the deletionDate field to identify and handle deleted records appropriately in their systems.
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.hasNextPage to see if more data exists
- If true, use results.pageInfo.endCursor as pageCursor in next request
- Repeat until hasNextPage is false
Delta sync usage:
- Store the timestamp of your last sync
- Pass that timestamp as changedSinceDate
- Only evidence created, modified, shared, or deleted since that timestamp is returned
- Process updates, including soft-deletes (deletionDate !== null)
- Update your last sync timestamp to the current time
Rate limit: 50 requests / minute.
Path parameters
Query parameters
Controls the maximum number of items returned in one response from the API.
Maximum number of evidence entries to return per page.
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 evidence.
Includes all evidence that have changed since changedSinceDate. Considers creationDate, modificationDate, deletionDate, and visibleToAuditorDate timestamps when determining changes.
Limits results to the provided evidence types. Must include at least one of: UPLOADED_DOCUMENT, OBSERVATION, LINK, VANTA_DOCUMENT, VANTA_POLICY, VANTA_TEST, VANTA_TEST_SNAPSHOT.
Response
Ok