patientId, title, and content; all other fields are optional.
Request
POST https://api.clinikapi.com/v1/notes
Headers
Your ClinikAPI secret key (
clk_live_* or clk_test_*).Must be
application/json.Body
ID of the patient this note belongs to (e.g.
pt_abc123).Human-readable title for the note (e.g.
"Follow-up Visit - Hypertension Management").Full text body of the note. Plain text or Markdown are both accepted.
ID of the practitioner who authored the note (e.g.
prac_def456).ID of the encounter this note is associated with (e.g.
enc_xyz789).Type of clinical note. One of:
progress-note, discharge-summary, consultation-note, history-and-physical, operative-note, procedure-note, referral-note, transfer-summary, other.MIME type of the note content. Defaults to
text/plain. Use text/markdown for Markdown content.Document status. One of:
preliminary, final, amended. Defaults to preliminary.Freeform category tag (e.g.
"cardiology").Clinically relevant date in
YYYY-MM-DD format. Defaults to the current date.Response
Returns201 Created with the created note wrapped in the standard envelope.
Generated note ID (e.g.
note_abc123).Patient ID the note is linked to.
Practitioner ID of the note author, if provided.
Encounter ID the note is linked to, if provided.
Note type as submitted.
Note title.
Note body content.
MIME type of the content.
Document status (
preliminary, final, or amended).Category tag, if provided.
Clinically relevant date in
YYYY-MM-DD format.Standard response metadata including
requestId, timestamp, status, and rate-limit fields.