---
title: "List questionnaires"
method: GET
path: "/customer-trust/questionnaires"
tags: ["Customer Trust"]
---

# List questionnaires

`GET /customer-trust/questionnaires`

List questionnaires with filtering and pagination.

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — 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.
- `q` string
- `statusMatchesAny` QuestionnaireStatus[]
- `typeMatchesAny` CustomerTrustQuestionnaireType[]
- `createdAfter` string
- `createdBefore` string
- `ownerIdMatchesAny` string[]
- `approverIdMatchesAny` string[]

## Response `200`

Ok

- PaginatedResponseCustomerTrustQuestionnaire
  - `results` object, required
    - `data` CustomerTrustQuestionnaire[], required
      - `id` string, required
      - `displayName` string, required
      - `url` string
      - `type` 'SPREADSHEET' | 'WEBSITE' | 'DOCUMENT', required
      - `status` 'APPROVED' | 'IN_PROGRESS' | 'IN_REVIEW' | 'READY_FOR_REVIEW' | 'WAITING_ON_ANSWERS' | 'ON_HOLD' | 'NO_LONGER_NEEDED' | 'COMPLETE' | 'ERROR' | 'EXTRACTING_QUESTIONS' | 'QUEUED_FOR_EXTRACTION' | 'PROCESSING' | 'QUEUED_FOR_PROCESSING' | 'WAITING_ON_COLUMN_SELECTION' | 'WAITING_ON_COLUMN_APPROVAL' | 'QUEUED_FOR_COLUMN_DETECTION' | 'DETECTING_COLUMNS', required
      - `statusLog` QuestionnaireStatusChangeEntry[], required — The status change history log for the questionnaire. Entries are ordered by the most recent status change first.
        - `updatedBy` QuestionnaireUser, required
          - `id` string, required
          - `displayName` string, nullable, required
          - `email` string, nullable, required
        - `updatedAt` string, date-time, required — The date and time when the status was changed
        - `status` 'APPROVED' | 'IN_PROGRESS' | 'IN_REVIEW' | 'READY_FOR_REVIEW' | 'WAITING_ON_ANSWERS' | 'ON_HOLD' | 'NO_LONGER_NEEDED' | 'COMPLETE' | 'ERROR' | 'EXTRACTING_QUESTIONS' | 'QUEUED_FOR_EXTRACTION' | 'PROCESSING' | 'QUEUED_FOR_PROCESSING' | 'WAITING_ON_COLUMN_SELECTION' | 'WAITING_ON_COLUMN_APPROVAL' | 'QUEUED_FOR_COLUMN_DETECTION' | 'DETECTING_COLUMNS', required
        - `message` string, nullable, required — An optional message associated with the status change
      - `ownerAssignment` ActorAssignment
        - `type` 'User' | 'Team', required
        - `id` string, required
        - `displayName` string, nullable, required
      - `approverAssignment` ActorAssignment
        - `type` 'User' | 'Team', required
        - `id` string, required
        - `displayName` string, nullable, required
      - `customerTrustAccountId` string
      - `dueDate` string, date-time
      - `metadata` object[]
        - `value` string, required
        - `key` string, required
      - `tagAndCategoryIds` TagInput[], required — Tags assigned to this questionnaire. Each entry contains a categoryId and tagId.
        - `categoryId` string, required
        - `tagId` string, required
      - `createdDate` string, date-time, required
      - `updatedDate` string, date-time, required
      - `completedDate` string, date-time
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/revisions/6c1f7590538b/schema)
