Body
-
The model type that the note is for. Available options are: account, bank_transaction, case, charge, check, circle, conversation, expectation, illustration, plan, risk, statement, statement_transaction, task
Values are
account,bank_transaction,case,charge,check,circle,conversation,expectation,illustration,plan,risk,statement,statement_transaction, ortask. -
The UUID of the model that the note is for.
-
The note's contents.
-
Type of note. Available note types are: call, note, meeting and email
Value Description call Call note Note meeting Meeting email Email Values are
call,note,meeting, oremail. -
Note path, used for note grouping
-
Is this note pinned to the top of any results
-
Is this note visible to client accounts
POST
/api/v1/note
curl \
--request POST 'https://api.plannrcrm.com/api/v1/note' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"notable_type":"account","notable_uuid":"57244b25-f84a-4e9d-bc34-ed496ff37b28","contents":"This guy rocks.","type":"call","path":"gifts","is_pinned":false,"visible_to_clients":false}'
Request examples
{
"notable_type": "account",
"notable_uuid": "57244b25-f84a-4e9d-bc34-ed496ff37b28",
"contents": "This guy rocks.",
"type": "call",
"path": "gifts",
"is_pinned": false,
"visible_to_clients": false
}
Response examples (401)
{
"message": "Unauthenticated."
}