Custom Sidebar Apps Guide
Only available for Enterprise & Developer plan customers
See video walkthrough here.
- Go to Settings -> Sidebar Apps
- Add an endpoint(s) where you will respond to a GET request from the Akute server
- In the endpoint(s) provided, the request query will contain:
{
patient_id: <akute_patient_id>,
external_patient_id: <external patient id set by customer on patient create through API>,
user_id: <user id of user logged into Akute in the chart causing this request>
}
- Send a response with this schema:
[ { title: <String>, html: <String> } ]
- The parent array allows for multiple "apps" to be sent from a single endpoint
- The HTML string in the above response must have a parent div element with id="akute-sidebar-app"
- The following elements are not currently supported:
- button
- form
- input
- The following element attributes are currently not supported:
- action
- Any URLs used in the HTML must be HTTPS. HTTP, FTP, and others are not supported