Skip to documentation
GenHealth - Eligibility integration

Admit VOB Retry Candidates

Perform Admit VOB Retry Candidates through GenHealth - Eligibility.

View as Markdown
eligibility_admit_vob_retry_candidates
write

Inputs

  • candidates
    expressionrequired
    Candidates

    Required literal value or workflow expression.

  • enforce_backoff
    boolean
    Enforce Backoff

    Optional true-or-false value.

    Default: true

  • max_retry_attempts
    numberrequired
    Max Retry Attempts

    Required numeric value.

  • backoff_minutes
    expressionrequired
    Backoff Minutes

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • statusStatus
  • candidatesCandidates
  • processing_candidate_countProcessing Candidate Count
  • retry_deferred_countRetry Deferred Count
  • retry_exhausted_countRetry Exhausted Count
  • terminal_unchanged_countTerminal Unchanged Count
  • sheet_handoff_resume_countSheet Handoff Resume Count
  • retry_historyRetry History
  • deferred_itemsDeferred Items
  • exhausted_itemsExhausted Items
  • exhausted_handoffExhausted Handoff
  • terminal_unchanged_itemsTerminal Unchanged Items
  • errorError

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": [
    "candidates",
    "max_retry_attempts",
    "backoff_minutes"
  ],
  "properties": {
    "candidates": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "backoff_minutes": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "enforce_backoff": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "max_retry_attempts": {
      "type": "number",
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "candidates": {},
    "retry_history": {},
    "deferred_items": {},
    "exhausted_items": {},
    "exhausted_handoff": {},
    "retry_deferred_count": {},
    "retry_exhausted_count": {},
    "terminal_unchanged_count": {},
    "terminal_unchanged_items": {},
    "processing_candidate_count": {},
    "sheet_handoff_resume_count": {}
  },
  "additionalProperties": true
}
View all GenHealth - Eligibility actions