External DocumentationTo learn more, visit the Vanta documentation.
Actions
List Documents
List all Documents with optional filtering.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Frameworks | A comma-separated list of frameworks to filter the retrieved documents by. |
| Page Cursor | A cursor that marks the starting point for fetching the next page of results. Use the endCursor value from the pageInfo object in the previous response. |
| Page Size | The maximum number of items returned in a single execution. |
| Return All Pages | Automatically fetch all resources, page by page. |
| Statuses | A comma-separated list of statuses to filter the retrieved documents by. |
{
"results": {
"data": [
{
"id": "1",
"ownerId": "2",
"category": "Account setup",
"description": "Provide two examples of a recent access request and approval ",
"isSensitive": false,
"title": "Document Title",
"uploadStatus": "Needs document",
"uploadStatusDate": "2024-03-17T00:00:00.000Z",
"url": "https://example.com"
}
],
"pageInfo": {
"hasNextPage": false,
"hasPreviousPage": false,
"startCursor": "1",
"endCursor": "1"
}
}
}
Was this page helpful?