List authorized diagnostic results
curl --request GET \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{}
],
"links": {},
"meta": {}
}Patient records
List authorized diagnostic results
Returns only authorized laboratory and radiology reports. Draft and completed-but-unapproved results remain hidden.
GET
/
patient
/
diagnostic-results
List authorized diagnostic results
curl --request GET \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/patient/diagnostic-results"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{}
],
"links": {},
"meta": {}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Maximum string length:
32Required range:
x >= 1Required range:
1 <= x <= 50