v1

latestOpenAPI 3.1.02026-07-24770322.0 KB

Update Note

This API endpoint updates a specific note. <br> This PATCH request will only update the fields you specify, leaving the rest as they were.

patch/v1/notes/{id}

Path parameters

idstring required

The ID of the note to update.

Request body

titlestring

The note’s title. This field does not support formatting or newlines.

contentstring

The note’s content. This must be valid HTML.

Response

200

contentstring
createdAtstring
creatorIdstring
entityIdstring
entityTypestring
idstring
objectstring
titlestring
updatedAtstring

Example response

{
  "content": "<p>Example updated content.</p>",
  "createdAt": "2025-03-12T15:11:57Z",
  "creatorId": "2417c06f-44fe-4913-8c84-cd5d358d6f4b",
  "entityId": "a29d0731-2e2b-4b94-9112-ea375517ab31",
  "entityType": "client",
  "id": "b47170e8-7ea0-485a-8395-0600bffb8718",
  "object": "note",
  "title": "Example Note"
}