---
title: "Add Record Book Director"
method: POST
path: "/record-books/{id}/directors"
tags: ["Record Book Directors"]
---

# Add Record Book Director

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

Adds a new director to the specified record book. Directors can only be added to corporation record books (Profit Corp or Nonprofit Corp).

## Path parameters

- `id` string, uuid, required

## Request body

- RecordBookDirectorInput
  - `user` object, required — The user to add as a director
    - `id` string, uuid, required — UUID of the user to add as a director
  - `position` object, required — The director position to assign
    - `id` string, uuid, required — UUID of the director position
  - `start_date` string, date — Director start date (YYYY-MM-DD)
  - `end_date` string, date — Director end date (YYYY-MM-DD)

## Response `200`

Created

- object
  - `data` RecordBookDirector — A director of a record book.
    - `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

- `400` — Invalid parameter format
- `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)
