Skip to main content
POST
/
v1
/
public
/
clients
/
{client_id}
/
notes
Create a Markdown note
curl --request POST \
  --url https://api.everbility.com/v1/public/clients/{client_id}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "markdown": "<string>"
}
'
{
  "note_id": "<string>"
}

Authorizations

Authorization
string
header
required

Use a Clerk-backed Everbility user or organisation API key directly as the bearer token.

Path Parameters

client_id
integer
required

Body

application/json
title
string
required
markdown
string
required

Response

Successful Response

note_id
string
required