Description
Retrieve a list of all countries from which MyHealthNote Ecosystem's users originate.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/countries
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/system/countries" \
-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/countries", {
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/countries",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search |
string | No | - | Search by country name |
region |
string | No | - | Filter by region (Asia, Europe, etc.) |
limit |
integer | No | 50 | Number of results per page |
offset |
integer | No | - | Pagination offset |
Try It Out
Enter your API token to test this endpoint: