POST
/
notes
curl --request POST \
  --url https://api.usecobalt.com/v1/notes \
  --header 'Content-Type: application/json' \
  --header 'access_token: <api-key>' \
  --header 'client_id: <api-key>' \
  --header 'client_secret: <api-key>' \
  --data '{
  "appointment_id": "<string>",
  "note": {
    "subjective": "<string>",
    "objective": "<string>",
    "assessment": "<string>",
    "plan": "<string>"
  }
}'
{
  "success": true,
  "message": "<string>"
}

Notes are created in the provider’s EMR using RPA via a headless browser. Creating notes this way is not instantaneous like an API call. In our experience, it can take ~5-25 seconds to create a note depending on the complexity of the EMR.

Instead of leaving your POST request hanging until note transfer completion, we immediately return a success response if the request is properly formed. We then notify you via a webhook when the note processing has completed.

This gives you flexibility around your user experience. For example, when you first make the /notes call you can display a Processing status to your user and when you get the webhook notification you can update that to Completed.

Example Request

curl -X POST https://api.usecobalt.com/v1/notes \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh' \
-H 'access_token: 493JKLHIU98789hLKH9HHJH' \
-d '{
    "appointment_id": "728948",
    "note": {
        "subjective": "this is the subjective section",
        "objective": "this is the objective section",
        "assessment": "this is the assessment section",
        "plan": "this is the plan section"
    }
}'

Example Response

{
    "success": true,
    "message": "Note upload in progress."
}

Authorizations

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

Body

application/json
appointment_id
string
required

The id of the appointment. This is the id included in the response to GET /appointments.

note
object
required

The data for the note. This can be structured or text.

Response

200 - application/json
Successful response
success
boolean
message
string