Get Notes
GET/calendars/appointments/:appointmentId/notes
Get Appointment Notes
Request
Version stringrequired
API Version
Available options
v3appointmentId stringrequired
Appointment ID
limit numberrequired
Limit of notes to fetch
Possible values: <= 20
offset numberrequired
Offset of notes to fetch
Possible values: >= 0
Successful response
- application/json
- Schema
- Example (auto)
Schema
notesobject[]
List of appointment notes
hasMoreboolean
Whether more notes are available
{
"notes": [
{
"id": "HGPcayliwcdoUFzvbTok",
"body": "lorem ipsum",
"userId": "TUcmRxWrjqzJS8EjkxNK"
}
],
"hasMore": true
}