v1

latestOpenAPI 3.0.02026-07-2483164186.3 KB
Notes

Update Note

Update a customer note by its identifier. Rate limit: 60 requests per minute per organization.

patch/notes

Request body

idstring required

Unique identifier of the note to update

notestring required

Updated text content of the note

Example request

{
  "id": "uuid-v4",
  "note": "Updated note content"
}

Response

Note updated successfully

idstring

Unique identifier of the note

notestring

Text content of the note

createdBystring

Name of the user who created the note

updatedBystring

Name of the user who last updated the note

dateCreatedstring date-time

Timestamp when the note was created

dateUpdatedstring date-time

Timestamp when the note was last updated

Example response

{
  "id": "uuid-v4",
  "note": "Spoke with customer, follow-up demo scheduled for tomorrow.",
  "createdBy": "Mitul Varshney",
  "updatedBy": "Mitul Varshney",
  "dateCreated": "2026-02-06T11:55:03.170Z",
  "dateUpdated": "2026-02-06T11:55:03.170Z"
}