Description
Explore the MyHealthNote Ecosystem for its latest events, key milestones, and important announcements.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/events
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/system/events" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Accept: application/json"
JavaScript/Node.js
const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/system/events", {
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
});
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get(
"https://app.myhealthnote.com/api/fhir/Dash/system/events",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit |
integer | No | 20 | Number of events to return |
upcoming |
boolean | No | - | Show only upcoming events |
type |
string | No | - | Filter by event type |
Try It Out
Enter your API token to test this endpoint: