v1
latestOpenAPI 3.0.32026-07-26229361630.0 KBPatient
Update EMR user profile
Updates an EMR user profile with validated and normalized data.
Authorization Rules:
- Users can update their own profile.
- Admins can update any profile within their workspace.
Name Handling:
- If fln is provided, it will be split into fn, mn, ln.
- If updating name, ensure either fn or fln is provided.
patch/profiles/v1/emr-user/{oid}
Path parameters
oidstring required
Headers
client-idstring required
Example:EC_1431
Request body
Example request
{
"mobile": "+919876543210",
"email": "testuser@eka.care",
"gen": "M",
"dob": "2000-01-02",
"fn": "eka",
"mn": "kumar",
"ln": "user",
"fln": "eka user",
"bg": "B+",
"s": "Mr",
"extras": {
"preferred_language": "en",
"city": "Bangalore"
}
}Response
Profile updated successfully
Example response
{
"message": "Profile updated successfully"
}