Create a note
Headers
-
Content-Type string
-
Accept string
Body Required
-
The model type that the note for. Available options are: account, bank_transaction, case, charge, check, conversation, expectation, illustration, plan, risk, statement, statement_transaction, task
-
The UUID of the model that the note is for.
-
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
POST /api/v1/note
curl \
-X POST https://api.plannrcrm.com/api/v1/note \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"notable_type":"case","notable_uuid":"189812b4-549e-49c8-a0eb-4232a174f6c6","contents":"This guy rocks.","type":"meeting","path":"gifts","is_pinned":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": "189812b4-549e-49c8-a0eb-4232a174f6c6",
"contents": "This guy rocks.",
"type": "meeting",
"path": "gifts",
"is_pinned": false
}