PATCH
/
mr
/
api
/
v1
/
cases
/
{id}
Update Case
curl --request PATCH \
  --url https://api.eka.care/mr/api/v1/cases/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Pt-Oid: <x-pt-oid>' \
  --data '{
  "display_name": "Leg Injury",
  "type": "OPConsultation"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Pt-Oid
string
required

Patient ID

Path Parameters

id
string
required

Unique case ID

Body

application/json

Response

204

Case updated successfully (no content)