delete https://sandbox.elationemr.com/api/2.0/problems//
Response
xxxxxxxxxx
10import requests
import json
​
access_token = "TyEPKw8fVGRKpCBa81ygwjCLXDNIAm"
auth_header = "Bearer %s" % (access_token)
​
resp = requests.delete("https://sandbox.elationemr.com/api/2.0/problems/54233202689/",
headers={'Authorization': auth_header})
​
print resp.status_code
Try It!
to start a request and see the response here!