Skip to main content
POST
Create Patient Note

Request Parameters

  • note (string, required): Chart note body content
  • subject (string, required): Chart note title
  • patient_mrn (string, required): Medical Record Number (MRN) of the patient
  • location_id (string, required): EMR location ID. Must match a location returned by GET /v1/locations for the account.

Example Request

Example Response

The response includes:
  • patient_note_id: Unique identifier for the created patient note record
  • job_id: Job execution identifier for tracking the async operation

Error Responses

Missing Required Field

Invalid Location

Webhook Notifications

When the patient note processing is complete, we will send a webhook to your registered endpoint.

Success

Failure

Authorizations

client_id
string
header
required
client_secret
string
header
required
access_token
string
header
required

Body

application/json
note
string
required

Chart note body content

subject
string
required

Chart note title

patient_mrn
string
required

Medical Record Number (MRN) of the patient

location_id
string
required

EMR location ID. Must match a location returned by GET /v1/locations for the account.

Response

Patient note queued successfully

success
boolean
message
string
patient_note_id
string

Unique identifier for the created patient note record

job_id
integer

Job execution identifier for tracking the async operation