GoHighLevel Contacts API

Create Note

POST/contacts/:contactId/notes

POST /contacts/:contactId/notes Create a note on a contact. Notes hold free-text context — call summaries, internal comments — and can be pinned or colour-coded. It takes 1 path parameter and 5 body fields, requires the contacts.write scope and authenticates with a sub-account (location) token.

Request and authentication

Method
POST
Full URL
https://services.leadconnectorhq.com/contacts/:contactId/notes
Scopes
contacts.write
Token type
Sub-account (location) token
Accepted auth
OAuth Access Token, Private Integration Token
API version header
Version: 2021-07-28
Schema verified
22 June 2026

Path parameters

Substituted into the URL. Required by definition.

NameTypeDescription
contactIdrequiredstring

Example: sx6wyHhbFdRXh302LLNR

Request body

JSON body fields. Nested objects are shown indented under their parent.

NameTypeDescription
userIdstring

Example: GCs5KuzPqTls7vWclkEV

bodyrequiredstring

Example: lorem ipsum

titlestring

Example: Follow-up summary

colorstring

Example: #FFAA00

pinnedboolean

Example: false

Response fields

Top-level fields returned on a successful call.

NameTypeDescription
noteobject
idstring

Example: HGPcayliwcdoUFzvbTok

bodystring

Example: lorem ipsum

userIdstring

Example: TUcmRxWrjqzJS8EjkxNK

dateAddedstring

Example: 2021-07-08T12:02:11.285Z

contactIdstring

Example: TUcmRxWrjqzJS8EjkxNK

titlestring

Example: Follow-up summary

colorstring

Example: #FFAA00

pinnedboolean

Example: false

Example request

Copy-paste ready. Swap YOUR_TOKEN for your access token or Private Integration Token, and the sample ID for your own.

curl -X POST 'https://services.leadconnectorhq.com/contacts/sx6wyHhbFdRXh302LLNR/notes' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
    "body": "lorem ipsum"
  }'

Skip the schema lookup

Hylo gives your AI agent this schema — and the other 52 documented here — without you looking anything up. Ask in plain English; it picks the endpoint, fills the body, and can run the call against your own sub-account.

More contacts endpoints