Headers
-
Content-Type
string -
Accept
string
Path parameters
-
uuid
integer Required
Body
Required
-
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
PUT
/api/v1/note/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/note/uuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"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
{
"contents": "This guy rocks.",
"type": "meeting",
"path": "gifts",
"is_pinned": false,
"visible_to_clients": false
}