Skip to documentation
GenHealth integration

Select Subsequent Fax Candidates

Perform Select Subsequent Fax Candidates through GenHealth.

View as Markdown
intake_select_subsequent_candidates
write

Inputs

  • account_key
    text
    Account Key

    Optional text value.

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

    Default: 7

  • min_age_hours
    number
    Min Age Hours

    Optional numeric value.

    Default: 42

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • should_processShould Process
  • job_idJob Id
  • dry_runDry Run
  • itemsItems
  • account_keyAccount Key

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"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "lookback_days": {
      "type": "number",
      "default": 7,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "min_age_hours": {
      "type": "number",
      "default": 42,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "items": {},
    "job_id": {},
    "dry_run": {},
    "account_key": {},
    "should_process": {}
  },
  "additionalProperties": true
}
View all GenHealth actions