List visit clinical orders
curl --request GET \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{}
]
}Staff clinical workspace
List visit clinical orders
GET
/
outpatient-visits
/
{outpatientVisit}
/
orders
List visit clinical orders
curl --request GET \
--url https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://jaliprohmis.derrickmugabwa.dev/api/v1/outpatient-visits/{outpatientVisit}/orders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{}
]
}