patientId, status, and summary. Findings can be coded (ICD-10, SNOMED) or free-text.
Request
POST https://api.clinikapi.com/v1/assessments
Headers
Your ClinikAPI secret key (
clk_live_* or clk_test_*).Must be
application/json.Body
ID of the patient being assessed (e.g.
pt_abc123).Assessment status. One of:
in-progress, completed.Narrative clinical summary of the assessment findings and plan.
ID of the encounter during which this assessment was made (e.g.
enc_xyz789).ID of the practitioner conducting the assessment (e.g.
prac_def456).Short description of the assessment context (e.g.
"Annual wellness assessment").List of clinical findings. Each finding may include a
code (ICD-10 or SNOMED) and a text description.Additional clinician notes — follow-up instructions, plan details, or observations.
ISO 8601 timestamp of when the assessment was conducted (e.g.
"2025-01-15T10:00:00Z").Response
Returns201 Created with the new assessment wrapped in the standard envelope.
Generated assessment ID (e.g.
assess_abc123).Patient ID the assessment is linked to.
Assessment status (
in-progress or completed).Clinical summary as submitted.
Array of finding objects, each with optional
code and text.Practitioner ID, if provided.
Encounter ID, if provided.
Timestamp of when the assessment was conducted.
Standard response metadata including
requestId, timestamp, status, and rate-limit fields.