Field | Type | Description |
---|---|---|
patient_id | integer | Required. Id of patient returned from create patient API. |
note_category_id | integer | Optional. Note Category id to which you want to attach this patient note. If not available then notes will be attached to default note category. |
note | string | Required. Any markdown text you want to add as a patient note. |
{
"message": "Clinical note added successfully.",
"id": {{id}},
"patient_id": {{patientId}},
"note_category_id": {{note_category_id}},
"note": {{chart_note}}}
{
"error_message": "Request Failed. The selected patient id is invalid. "
}