Setup Patient
Perform Setup Patient through GenHealth.
intake_setup_patientwrite
Inputs
- Order Id
order_idtextOptional text value.
- Patient Id
patient_idtextOptional text value.
- Patient State
patient_statetextOptional text value.
- Delivery Address
delivery_addresstextOptional text value.
- Note Facility Name
note_facility_nametextOptional text value.
- Note Facility Updates
note_facility_updatestextOptional text value.
- Account Group
account_grouptextOptional text value.
- Account Key
account_keytextOptional text value.
- Note Indicates Private Residence
note_indicates_private_residencebooleanOptional true-or-false value.
Default:
false - Set Dropdowns
set_dropdownsbooleanOptional true-or-false value.
Default:
true - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false - Brightree Test
brightree_testbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessfacility_manual_followup_reasonFacility Manual Followup Reasonfacility_manual_followup_requiredFacility Manual Followup Requiredordering_doctorOrdering Doctorlocal_patient_idLocal Patient Id
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"order_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"account_key": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"account_group": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_state": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"set_dropdowns": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"brightree_test": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"delivery_address": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"note_facility_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"note_facility_updates": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"note_indicates_private_residence": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"ordering_doctor": {},
"local_patient_id": {},
"facility_manual_followup_reason": {},
"facility_manual_followup_required": {}
},
"additionalProperties": true
}