---
title: "Update a guest note"
method: PUT
path: "/v1/guests/{guest_id}/notes/{note_id}"
---

# Update a guest note

`PUT /v1/guests/{guest_id}/notes/{note_id}`

This API helps you to update the details of the specified guest note.

You must specify the unique identifier of the guest as `guest_id` and the note as `note_id` in the API request.

**Important**
 >You can change the notes and `note_type` elements by using this API.
 >You can change the alert of a note by modifying the `note_type` as generic = 2.
 >You cannot update `note_type` for a private guest note.

## Path parameters

- `guest_id` string, required
- `note_id` string, required

## Request body

- object
  - `id` string — Unique identifier of the center.
  - `is_private` boolean — This field denotes if the note is a private one. True - means the note is private. False - means the note is not private.
  - `alert` boolean — This denotes if the alert for the note is enabled or not. True - means the alert is ON. False - means the alert is OFF.
  - `note_type` '10' | '3' | '4' | '2' — Indicates the type of the note. 10 Show on opening Guest History, 3 Show during check-in, 4 Show when booking an appointment, 8 Show when taking payment, 2 Generic
  - `notes` string — This is the note for the guest on the appointment.

## Response `200`

200

- object
  - `id` string
  - `is_private` boolean
  - `alert` boolean
  - `note_type` integer
  - `notes` string
  - `center` object
    - `id` string
    - `name` string
  - `added_by` object
    - `id` string
    - `name` string
  - `created_date` string

## Other responses

- `400` — 400

---

[API](https://skmtc.net/zenoti/apis/zenoti-authentication.md) · [All operations](https://skmtc.net/zenoti/apis/zenoti-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zenoti/zenoti-authentication/versions/e628f892391a/schema)
