---
title: "interviewPlan.list"
method: POST
path: "/interviewPlan.list"
tags: ["Interview Plan"]
---

# interviewPlan.list

`POST /interviewPlan.list`

List published interview plans. Draft interview plans are not returned. If `includeArchived` is true, archived interview plans are also included. Job-specific interview plans are only returned when the caller can read the associated job.

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

**Requires the [`interviewsRead`](authentication#permissions-interviewplanlist) permission.**

## Request body

- InterviewPlanListRequest
  - `includeArchived` boolean, nullable — Whether archived interview plans should be included in the 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 interview plans to return per page. Maximum is 100.
  - `syncToken` string, nullable — A sync token to retrieve only interview plans updated since the last sync. Obtained from a previous list response.

## Response `200`

Responses from the interviewPlan.list endpoint

- union
  - InterviewPlanListSuccessResponse
    - `success` true, required
    - `results` InterviewPlan[], required
      - `id` string, uuid, required — The interview plan's unique identifier
      - `title` string, required — The title of the interview plan
      - `isArchived` boolean, required — Whether the interview plan has been archived
      - `createdAt` string, date-time, required — The timestamp when the interview plan was created
      - `updatedAt` string, date-time, required — The timestamp when the interview plan was last updated
    - `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)
