---
title: "Customer - Add Note"
method: POST
path: "/customer/add_note"
tags: ["customer"]
---

# Customer - Add Note

`POST /customer/add_note`

Add a note to a customer record.

## Request body

- object
  - `id` string, required — Customer ID
  - `note` string, required — Note text to add

## Response `200`

Note added, returns updated customer

- object
  - `customer` FullCustomer, required — Customer object with full details
    - `_id` string, required — Unique customer identifier
    - `name` string — Customer name
    - `company` string — Company name
    - `phone` string — Phone number
    - `email` string — Email address
    - `address` object — Customer address object
    - `notes` CustomerNote[] — Array of notes attached to the customer
      - `user_id` string, nullable — ID of the user who added the note
      - `time` string — ISO 8601 timestamp when the note was added
      - `note` string — Note text content
    - `price_lists` string[] — Assigned price list IDs
    - `tags` string[] — Array of tag IDs (ObjectId strings referencing the tag collection)
    - `log` CustomerLogEntry[] — Activity log entries for the customer
      - `user_id` string, nullable — ID of the user who performed the action, null for system
      - `action` string — Action performed (e.g. added tag, removed tag)
      - `details` object — Additional details about the action
      - `time` string — ISO 8601 timestamp of the action
    - `store_id` string — Associated store ID

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden. Insufficient permissions.
- `429` — Too many requests. Rate limit exceeded.
- `500` — Internal server error.

---

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