Build Manual Handoff Status
Perform Build Manual Handoff Status through GenHealth - Intake.
intake_build_manual_handoff_statuswrite
Inputs
- Order Id
order_idexpressionOptional literal value or workflow expression.
- Workflow Number
workflow_numberexpressionOptional literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Local Patient Id
local_patient_idexpressionOptional literal value or workflow expression.
- Status
statustextOptional text value.
Default:
"manual_handoff_required" - Reason
reasonexpressionrequiredRequired literal value or workflow expression.
- Task Name
task_nametextOptional text value.
- Target Channel
target_channeltextOptional text value.
- Details
detailsjsonOptional JSON value.
Outputs
successSuccessstatusStatusfailure_categoryFailure Categorymanual_handoff_requiredManual Handoff Requiredorder_idOrder Idworkflow_numberWorkflow Numberpatient_idPatient Idpatient_keyPatient Keylocal_patient_idLocal Patient IdreasonReasontask_nameTask Nametarget_channelTarget ChanneldetailsDetailsmessageMessageerrorErrorerror_messageError Message
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": [
"reason"
],
"properties": {
"reason": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"status": {
"type": "string",
"default": "manual_handoff_required",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"details": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"order_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"task_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_key": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"target_channel": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"workflow_number": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"local_patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"reason": {},
"status": {},
"details": {},
"message": {},
"success": {},
"order_id": {},
"task_name": {},
"patient_id": {},
"patient_key": {},
"error_message": {},
"target_channel": {},
"workflow_number": {},
"failure_category": {},
"local_patient_id": {},
"manual_handoff_required": {}
},
"additionalProperties": true
}