Update Patient
Perform Update Patient through NikoHealth.
nikohealth_update_patientwritenikohealth
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Date Of Birth
date_of_birthtextOptional text value.
- Phone
phonetextOptional text value.
emailtextOptional text value.
Outputs
successSuccesspatient_idPatient IderrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"patient_id"
],
"properties": {
"email": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"phone": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"last_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"first_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"date_of_birth": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"patient_id": {}
},
"additionalProperties": true
}