Headers
-
Content-Type
string -
Accept
string
Body
Required
-
notable_type
string Required The model type that the note for. Available options are: account, bank_transaction, case, charge, check, circle, conversation, expectation, illustration, plan, risk, statement, statement_transaction, task
-
notable_uuid
string Required The UUID of the model that the note is for.
-
contents
string Required The note's contents.
-
type
string Type of note. Available note types are: call, note, meeting and email
-
path
string Note path, used for note grouping
-
is_pinned
boolean Is this note pinned to the top of any results
-
visible_to_clients
boolean Is this note visible to client accounts
POST
/api/v1/note
curl \
--request POST 'https://api.plannrcrm.com/api/v1/note' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"notable_type":"case","notable_uuid":"0d68d0db-09ae-4608-89cd-d7eb7b492492","contents":"This guy rocks.","type":"meeting","path":"gifts","is_pinned":false,"visible_to_clients":false}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"notable_type": "case",
"notable_uuid": "0d68d0db-09ae-4608-89cd-d7eb7b492492",
"contents": "This guy rocks.",
"type": "meeting",
"path": "gifts",
"is_pinned": false,
"visible_to_clients": false
}