---
title: "List Record Book Directors"
method: GET
path: "/record-books/{id}/directors"
tags: ["Record Book Directors"]
---

# List Record Book Directors

`GET /record-books/{id}/directors`

Returns a paginated list of directors for the specified record book.

## Path parameters

- `id` string, uuid, required

## Query parameters

- `limit` integer
- `page` integer

## Response `200`

Success

- object
  - `has_more` boolean — Indicates if there are more results available beyond the current page.
  - `data` RecordBookDirector[]
    - `id` string, uuid, required — UUID of the director record
    - `user` User
      - `id` string, uuid — UUID of the user
      - `first_name` string — First name of the user
      - `middle_name` string, nullable — Middle name of the user
      - `last_name` string — Last name of the user
      - `full_name` string — Full name of the user
      - `email` string — Email of the user
    - `position` object — The director's position
      - `id` string, uuid
      - `name` string
    - `start_date` string, date, nullable — Director start date (YYYY-MM-DD)
    - `end_date` string, date, nullable — Director end date (YYYY-MM-DD)

## Other responses

- `401` — Unauthenticated
- `403` — Forbidden - User does not have access or record book not found

---

[API](https://skmtc.net/harborcompliance/apis/harbor-compliance-api.md) · [All operations](https://skmtc.net/harborcompliance/apis/harbor-compliance-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/harborcompliance/harbor-compliance-api/revisions/f9302ec2ef8a/schema)
