get https://sandbox.elationemr.com/api/2.0/medication_order_templates/
Responses
xxxxxxxxxx
11import requests
import json
​
access_token = "VFroUHsmrErlVI6nJ08Alwhri5RGCW"
auth_header = f"Bearer {access_token}"
​
resp = requests.get("https://sandbox.elationemr.com/api/2.0/medication_order_templates/",
headers={'Authorization': auth_header})
​
print resp.status_code
print json.dumps(json.loads(resp.content), indent=2)
Try It!
to start a request and see the response here! Or choose an example: