> ## Documentation Index
> Fetch the complete documentation index at: https://visaflo.ca/knowledge-base/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a note

> Add a note to a VisaFlo lead, client, or case.

`POST https://api.visaflo.app/api/public/note/create`

```json theme={null}
{
  "entityType": "case",
  "entityId": "VFLO_CASE_ID",
  "title": "Intake context",
  "content": "Client confirmed the passport scan is current."
}
```

`entityType`, `entityId`, and `content` are required. `description` is accepted as an alternative to `content`; for case notes VisaFlo stores the content as the note description. Returns `201` with the created note.
