Skip to documentation
Parachute Health integration

Get Patient Insurance From Parachute

Perform Get Patient Insurance From Parachute through Parachute Health.

View as Markdown
parachute_get_patient_insurance
readparachute

Inputs

  • inbox_document_id
    expressionrequired
    Inbox Document Id

    Required literal value or workflow expression.

  • parachute_org_id
    expression
    Parachute Org Id

    Optional literal value or workflow expression.

  • mode
    selectrequired
    Mode

    Required selected identifier or value.

    Options: off ("off"), shadow ("shadow"), enforce ("enforce")

Outputs

  • carrier_nameCarrier Name
  • member_idMember Id
  • modeMode

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "inbox_document_id",
    "mode"
  ],
  "properties": {
    "mode": {
      "enum": [
        "off",
        "shadow",
        "enforce"
      ],
      "type": "string",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "parachute_org_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "inbox_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "mode": {},
    "member_id": {},
    "carrier_name": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions