get https://sandbox.elationemr.com/api/2.0/appointments//
Responses
xxxxxxxxxx
11import requests
import json
​
access_token = "TyEPKw8fVGRKpCBa81ygwjCLXDNIAm"
auth_header = "Bearer %s" % (access_token)
​
resp = requests.get("https://sandbox.elationemr.com/api/2.0/appointments/65097433179/",
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: