Tag Patient with Referral Source
Perform Tag Patient with Referral Source through NikoHealth.
nikohealth_apply_referral_source_tagwritenikohealth
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Niko Patient Id
niko_patient_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessverdictVerdictextracted_nameExtracted Namematched_tag_nameMatched Tag Namematched_tag_idMatched Tag Idmatched_tag_idsMatched Tag Idsdocument_idDocument 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": [
"document_id",
"niko_patient_id"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"niko_patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"verdict": {},
"document_id": {},
"extracted_name": {},
"matched_tag_id": {},
"matched_tag_ids": {},
"matched_tag_name": {}
},
"additionalProperties": true
}