Skip to documentation
GenHealth - Eligibility integration

Select DME VOB Candidates

Perform Select DME VOB Candidates through GenHealth - Eligibility.

View as Markdown
eligibility_select_dme_vob_candidates
write

Inputs

  • value_ranges
    expressionrequired
    Value Ranges

    Required literal value or workflow expression.

  • spreadsheet_id
    expression
    Spreadsheet Id

    Optional literal value or workflow expression.

  • as_of_date
    daterequired
    As Of Date

    Required date in YYYY-MM-DD format.

  • vob_assignment_value
    expressionrequired
    Vob Assignment Value

    Required literal value or workflow expression.

  • team_assignment_values
    expressionrequired
    Team Assignment Values

    Required literal value or workflow expression.

  • max_candidates
    number
    Max Candidates

    Optional numeric value.

    Default: 25

  • candidate_row_numbers
    expression
    Candidate Row Numbers

    Optional literal value or workflow expression.

  • allow_unassigned_vob_rows_for_allowlist
    boolean
    Allow Unassigned Vob Rows For Allowlist

    Optional true-or-false value.

    Default: false

  • additional_assignment_scopes
    json
    Additional Assignment Scopes

    Optional JSON value.

  • enabled_eligibility_portals
    expression
    Enabled Eligibility Portals

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • candidatesCandidates
  • candidate_countCandidate Count
  • manual_review_rowsManual Review Rows
  • manual_review_countManual Review Count
  • manual_review_handoffManual Review Handoff
  • portal_held_rowsPortal Held Rows
  • portal_held_countPortal Held Count
  • skipped_rowsSkipped Rows
  • skipped_countSkipped Count
  • diagnosticsDiagnostics
  • errorError
  • error_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": [
    "value_ranges",
    "as_of_date",
    "vob_assignment_value",
    "team_assignment_values"
  ],
  "properties": {
    "as_of_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "value_ranges": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_candidates": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "spreadsheet_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "vob_assignment_value": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "candidate_row_numbers": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "team_assignment_values": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "enabled_eligibility_portals": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "additional_assignment_scopes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "allow_unassigned_vob_rows_for_allowlist": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "candidates": {},
    "diagnostics": {},
    "skipped_rows": {},
    "error_message": {},
    "skipped_count": {},
    "candidate_count": {},
    "portal_held_rows": {},
    "portal_held_count": {},
    "manual_review_rows": {},
    "manual_review_count": {},
    "manual_review_handoff": {}
  },
  "additionalProperties": true
}
View all GenHealth - Eligibility actions