---
title: "Create Contact Note"
method: POST
path: "/api/v1/contacts/{id}/notes"
tags: ["Contact notes"]
---

# Create Contact Note

`POST /api/v1/contacts/{id}/notes`

## Path parameters

- `id` string, required

## Request body

- ContactNoteRequest
  - `note` string, required — Note content

## Response `200`

Contact note created successfully

- ContactNoteResponse
  - `status` string
  - `data` ContactNote
    - `id` integer
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `contact_id` integer
    - `note` string
    - `user_id` integer
    - `first_name` string
    - `last_name` string
    - `avatar_url` string, nullable

## Other responses

- `401` — Unauthorized
- `500` — Internal server error

---

[API](https://skmtc.dev/libredesk/apis/libredesk-api.md) · [All operations](https://skmtc.dev/libredesk/apis/libredesk-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/libredesk/libredesk-api/revisions/71ee25a0b5df/schema)
