---
title: "feedbackFormDefinition.list"
method: POST
path: "/feedbackFormDefinition.list"
tags: ["FeedbackFormDefinition"]
---

# feedbackFormDefinition.list

`POST /feedbackFormDefinition.list`

Lists all feedback form definitions.

See the [Pagination and Incremental Synchronization](/docs/pagination-and-incremental-sync) guide for detailed usage examples.

**Requires the [`hiringProcessMetadataRead`](authentication#permissions-feedbackformdefinitionlist) permission.**

## Request body

- FeedbackFormDefinitionListRequest
  - `syncToken` string, nullable — A sync token to retrieve only feedback form definitions updated since the last sync. Obtained from a previous list response.
  - `cursor` string, nullable — The pagination cursor. Use 'start' for the first page or the nextCursor value from a previous response.
  - `limit` integer, nullable — The maximum number of feedback form definitions to return per page. Maximum is 100.
  - `includeArchived` boolean, nullable — Whether to include archived feedback form definitions in the results.

## Response `200`

Responses from the feedbackFormDefinition.list endpoint

- union
  - FeedbackFormDefinitionListSuccessResponse
    - `success` true, required
    - `results` FeedbackFormDefinition[], required
      - `id` string, uuid, required — The unique identifier for the feedback form definition
      - `organizationId` string, uuid, required — The unique identifier for the organization
      - `title` string, required — The title of the feedback form definition
      - `isArchived` boolean, required — Whether the feedback form definition is archived
      - `isDefaultForm` boolean, required — Whether this is the organization's default feedback form definition
      - `formDefinition` FormDefinition, required
        - `sections` FormDefinitionSection[], required — The sections in the form definition
          - `title` string, nullable — The section title
          - `descriptionHtml` string, nullable — The section description formatted as HTML
          - `descriptionPlain` string, nullable — The section description as plain text
          - `fields` FormDefinitionFieldEntry[], required — The fields in this form section
            - `isRequired` boolean, required — Whether this form field is required
            - `descriptionHtml` string, nullable — The field description formatted as HTML
            - `descriptionPlain` string, nullable — The field description as plain text
            - `field` FormDefinitionField, required
              - …
      - `interviewId` string, uuid, nullable — The interview this feedback form definition belongs to, if interview-specific
    - `nextCursor` string — Cursor for the next page of results, if available
    - `moreDataAvailable` boolean — Whether more data is available beyond this page
    - `syncToken` string — Sync token to use for future incremental syncs. Only present on the last page.
  - ErrorResponse
    - `success` false, required
    - `errors` ErrorDetail[], required
      - `message` string, required
      - `parameter` string

---

[API](https://skmtc.net/ashbyhq/apis/ashby-api.md) · [All operations](https://skmtc.net/ashbyhq/apis/ashby-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ashbyhq/ashby-api/revisions/778b919dc743/schema)
