---
title: "Add Record Book Manager"
method: POST
path: "/record-books/{id}/managers"
tags: ["Record Book Managers"]
---

# Add Record Book Manager

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

Adds a new manager to the specified record book. Managers can only be added to LLC record books where the company is configured as manager-managed.

## Path parameters

- `id` string, uuid, required

## Request body

- RecordBookManagerInput
  - `user` object, required — The user to add as a manager
    - `id` string, uuid, required — UUID of the user to add as a manager
  - `title` string, required — The manager's title (e.g. Managing Member)
  - `start_date` string, date — Manager start date (YYYY-MM-DD)
  - `end_date` string, date — Manager end date (YYYY-MM-DD)

## Response `200`

Created

- object
  - `data` RecordBookManager — A manager of a record book.
    - `id` string, uuid, required — UUID of the manager 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
    - `manager_name` string — Full name of the manager
    - `title` string — The manager's title (e.g. Managing Member)
    - `start_date` string, date, nullable — Manager start date (YYYY-MM-DD)
    - `end_date` string, date, nullable — Manager 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)
