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-Id: <x-pt-id>' \
  --data '{
  "display_name": "Leg Injury",
  "hi_type": "OPConsultation",
  "type": "OP",
  "occurred_at": 1678886400,
  "partner_meta": {
    "facility_id": "GH",
    "uhid": "UHID_1234"
  }
}'
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-Id
string
required

Patient ID

Path Parameters

id
string
required

Unique case ID

Body

application/json

Response

204

Case updated successfully (no content)