Notes

Creates a new note on an entity (job, customer, quote, etc.).

post/notes

Request body

textstring required

The body text of the note

entityIdnumber required

The ID of the entity this note belongs to

parentIdnumber nullable

Parent note ID for a reply. Omit or set null for top-level notes.

isPinnedboolean

Pin the note on creation. Defaults to false.

Example request

{
  "entityId": 123,
  "parentId": 456
}

Response

Resource created successfully

resultstring required

Changes