delete https://sandbox.elationemr.com/api/2.0/medication_order_templates//
Responses
xxxxxxxxxx
13import requests
import json
​
access_token = "TyEPKw8fVGRKpCBa81ygwjCLXDNIAm"
auth_header = "Bearer %s" % (access_token)
​
resp = requests.delete(
"https://sandbox.elationemr.com/api/2.0//medication_order_templates/10239344687/",
data=json.dumps(data),
headers={'Authorization': auth_header, 'Content-type': 'application/json'})
​
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: