Update Note
PUT/contacts/:contactId/notes/:id
Update Note
Request
Version stringrequired
API Version
Available options
v3contactId stringrequired
Contact Id
id stringrequired
Note Id
- application/json
- Body
- Example (auto)
Bodyrequired
userIdstring
User Id of the note author
bodystring
Body content of the note
titlestring
Title of the note
colorstring
Hex color code for the note
pinnedboolean
Whether the note is pinned
{
"userId": "GCs5KuzPqTls7vWclkEV",
"body": "lorem ipsum",
"title": "Follow-up summary",
"color": "#FFAA00",
"pinned": false
}
Successful response
- application/json
- Schema
- Example (auto)
Schema
noteobject
Note details
{
"note": {
"id": "HGPcayliwcdoUFzvbTok",
"body": "lorem ipsum",
"userId": "TUcmRxWrjqzJS8EjkxNK",
"dateAdded": "2021-07-08T12:02:11.285Z",
"contactId": "TUcmRxWrjqzJS8EjkxNK"
}
}