Skip to main content
POST
/
calendars
/
appointments
/
{appointmentId}
/
notes
Create Note
curl --request POST \
  --url https://services.leadconnectorhq.com/calendars/appointments/{appointmentId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "body": "lorem ipsum",
  "userId": "GCs5KuzPqTls7vWclkEV"
}
'
{
  "note": {
    "id": "HGPcayliwcdoUFzvbTok",
    "body": "lorem ipsum",
    "userId": "TUcmRxWrjqzJS8EjkxNK",
    "dateAdded": "2021-07-08T12:02:11.285Z",
    "contactId": "TUcmRxWrjqzJS8EjkxNK",
    "createdBy": {
      "id": "TUcmRxWr",
      "name": "John Doe"
    }
  }
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-04-15

Path Parameters

appointmentId
string
required

Appointment ID

Body

application/json
body
string
required

Note body

Maximum string length: 5000
Example:

"lorem ipsum"

userId
string
Example:

"GCs5KuzPqTls7vWclkEV"

Response

Successful response

note
object
Last modified on March 4, 2026