Skip to main content

Note

Ability to upsert or append a note. Upsert means to insert a new note or update an existing one if it already exists by overwriting the existing note.

PropertyTypeDefault ValueOptionsDescription
titlestring(empty)N/AThe title of the note.
textstring(empty)N/AThe content of the note.
itemKeystring(empty)N/AThe key of the item to relate the note to.

Examples

Example 1: Upsert a note

{
"upsert": {
"title": "This is my note title",
"text": "This is my note text",
"itemKey": "item"
}
}

Example 1: Append a note

{
"append": {
"title": "This is my note title",
"text": "This is my note text",
"itemKey": "item"
}
}