Telehealth Public APIs
  1. General APIs
Telehealth Public APIs
  • Introduction
  • SSO Login
    • Generate SSO token
      POST
    • SSO Login
      GET
  • General APIs
    • Create Patient
      POST
    • Upload Patient File
      POST
    • Submit Patient's Form Response
      POST
    • Lab readings
      POST
    • Assign Service to Patient
      POST
    • Create Patient's Chart Note
      POST
    • Get Provider's Appointment Slots
      POST
    • Provider Sign Up
      POST
    • GraphQL Get Patient(s)
      POST
  1. General APIs

Create Patient's Chart Note

POST
/api/service/v1/patient/chart-note
This endpoint allows you to add a chart note for a specific patient.
Path Variables: None
Query Parameters: None
Request Body:
FieldTypeDescription
patient_idintegerRequired. Id of patient returned from create patient API.
note_category_idintegerOptional. Note Category id to which you want to attach this patient note. If not available then notes will be attached to default note category.
notestringRequired. Any markdown text you want to add as a patient note.
Success Response:
{
"message": "Clinical note added successfully.",
"id": {{id}},
"patient_id": {{patientId}},
"note_category_id": {{note_category_id}},
"note": {{chart_note}}}
Failure Response:
{
    "error_message": "Request Failed. The selected patient id is invalid. "
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
	"patient_id": {{patient_id}},
	"note": {{chart_note}}
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/service/v1/patient/chart-note' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
	"patient_id": {{patient_id}},
	"note": {{chart_note}}
}'

Responses

🟢200Example
application/json
Body

Example
{
    "message": "Clinical note added successfully.",
    "id": {{id}},
    "patient_id": {{patientId}},
    "note_category_id": {{note_category_id}},
    "note": {{chart_note}}
}
Modified at 2024-08-01 04:57:23
Previous
Assign Service to Patient
Next
Get Provider's Appointment Slots
Built with