Skip to documentation
GenHealth integration

Setup Patient

Perform Setup Patient through GenHealth.

View as Markdown
intake_setup_patient
write

Inputs

  • order_id
    text
    Order Id

    Optional text value.

  • patient_id
    text
    Patient Id

    Optional text value.

  • patient_state
    text
    Patient State

    Optional text value.

  • delivery_address
    text
    Delivery Address

    Optional text value.

  • note_facility_name
    text
    Note Facility Name

    Optional text value.

  • note_facility_updates
    text
    Note Facility Updates

    Optional text value.

  • account_group
    text
    Account Group

    Optional text value.

  • account_key
    text
    Account Key

    Optional text value.

  • note_indicates_private_residence
    boolean
    Note Indicates Private Residence

    Optional true-or-false value.

    Default: false

  • set_dropdowns
    boolean
    Set Dropdowns

    Optional true-or-false value.

    Default: true

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

  • brightree_test
    boolean
    Brightree Test

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • facility_manual_followup_reasonFacility Manual Followup Reason
  • facility_manual_followup_requiredFacility Manual Followup Required
  • ordering_doctorOrdering Doctor
  • local_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
}
View all GenHealth actions