Create Patient
Perform Create Patient through NikoHealth.
nikohealth_create_patientwritenikohealth
Inputs
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Date Of Birth
date_of_birthtextOptional text value.
Outputs
successSuccessresultResult
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",
"properties": {
"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"
},
"date_of_birth": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"result": {},
"success": {}
},
"additionalProperties": true
}