Skip to documentation
GenHealth integration

List Eligible Review Documents

Perform List Eligible Review Documents through GenHealth.

View as Markdown
auto_push_list_eligible_review_documents
write

Inputs

  • limit
    number
    Limit

    Optional numeric value.

    Default: 25

  • document_source
    text
    Document Source

    Optional text value.

    Default: "weave_inbox"

  • scan_limit
    number
    Scan Limit

    Optional numeric value.

    Default: 100

  • claim_ttl_minutes
    number
    Claim Ttl Minutes

    Optional numeric value.

    Default: 120

Outputs

  • successSuccess
  • documentsDocuments
  • countCount
  • held_countHeld Count
  • claimed_countClaimed Count
  • scanned_countScanned Count
  • document_sourceDocument Source
  • 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",
  "properties": {
    "limit": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "scan_limit": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "document_source": {
      "type": "string",
      "default": "weave_inbox",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "claim_ttl_minutes": {
      "type": "number",
      "default": 120,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "documents": {},
    "held_count": {},
    "claimed_count": {},
    "scanned_count": {},
    "document_source": {}
  },
  "additionalProperties": true
}
View all GenHealth actions