# Validate Tomorrow Health Payer

> Perform Validate Tomorrow Health Payer through Tomorrow Health Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake/gaboro_validate_tomorrow_health_payer](https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake/gaboro_validate_tomorrow_health_payer)

Integration: [Tomorrow Health Intake](https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake.md)

- Handler: `gaboro_validate_tomorrow_health_payer`

## Inputs

- `order_details` — Order Details (expression, required)
  Required literal value or workflow expression.
- `payer_name` — Payer Name (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `can_proceed` — Can Proceed
- `tomorrow_health_payer_name` — Tomorrow Health Payer Name
- `brightree_payor_key` — Brightree Payor Key
- `brightree_payor_name` — Brightree Payor Name
- `brightree_payor_id` — Brightree Payor Id
- `brightree_claim_code` — Brightree Claim Code
- `comment_message` — Comment Message
- `error_message` — Error Message
- `error` — Error

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

```json
{
  "type": "object",
  "required": [
    "order_details"
  ],
  "properties": {
    "payer_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_details": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "can_proceed": {},
    "error_message": {},
    "comment_message": {},
    "brightree_payor_id": {},
    "brightree_payor_key": {},
    "brightree_claim_code": {},
    "brightree_payor_name": {},
    "tomorrow_health_payer_name": {}
  },
  "additionalProperties": true
}
```
