Update a note
Headers
-
Content-Type string
-
Accept string
PUT /api/v1/note/{uuid}
curl \
-X PUT https://api.plannrcrm.com/api/v1/note/uuid \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"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
{
"contents": "This guy rocks.",
"type": "meeting",
"path": "gifts",
"is_pinned": false
}