Save Patient, Insurance, and Order Details to GenHealth
Perform Save Patient, Insurance, and Order Details to GenHealth through Tomorrow Health.
tomorrow_health_seed_structured_intake_datawritetomorrow_health
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Order Details
order_detailsexpressionOptional literal value or workflow expression.
- Raw Order Details
raw_order_detailsexpressionOptional literal value or workflow expression.
Outputs
successSuccessdocument_idDocument Idorder_idOrder Idfriendly_idFriendly Idpatient_idPatient Idinsurance_idInsurance Idprovider_idProvider Idseeded_fieldsSeeded FieldserrorError
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",
"order_id"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"order_details": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"raw_order_details": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"order_id": {},
"patient_id": {},
"document_id": {},
"friendly_id": {},
"provider_id": {},
"insurance_id": {},
"seeded_fields": {}
},
"additionalProperties": true
}