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.
Property | Type | Default Value | Options | Description |
---|---|---|---|---|
title | string | (empty) | N/A | The title of the note. |
text | string | (empty) | N/A | The content of the note. |
itemKey | string | (empty) | N/A | The 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"
}
}