PATCH
/
profiles
/
v1
/
patient
/
{oid}
curl --request PATCH \
  --url https://api.eka.care/profiles/v1/patient/{oid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'client-id: <client-id>' \
  --data '{
  "dob": "2000-01-02",
  "gen": "M"
}'
{
  "message": "Profile updated successfully"
}

Authorizations

Authorization
string
header
required

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

Headers

client-id
string
required
Example:

"EC_1431"

Path Parameters

oid
string
required
Example:

18661861868168

Body

application/json

Response

200
application/json

Update Patient profile

The response is of type object.