# Prepare Brightree Patient Note

> Perform Prepare Brightree Patient Note through Tomorrow Health Intake.

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

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

- Handler: `tomorrow_health_prepare_claracare_brightree_patient_note`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.
- `accepted_at` — Accepted At (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `patient_id` — Patient Id
- `patient_key` — Patient Key
- `note_reason` — Note Reason
- `subject` — Subject
- `description` — Description
- `severity` — Severity
- `state` — State
- `status` — Status
- `skip_if_match` — Skip If Match
- `skip_if_match_fields` — Skip If Match Fields
- `missing_note_fields` — Missing Note Fields
- `missing_note_info` — Missing Note Info
- `missing_note_info_message` — Missing Note Info Message
- `error_message` — Error 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

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

### Output schema

```json
{
  "type": "object",
  "properties": {
    "state": {},
    "status": {},
    "subject": {},
    "success": {},
    "severity": {},
    "patient_id": {},
    "description": {},
    "document_id": {},
    "note_reason": {},
    "patient_key": {},
    "error_message": {},
    "skip_if_match": {},
    "missing_note_info": {},
    "missing_note_fields": {},
    "skip_if_match_fields": {},
    "missing_note_info_message": {}
  },
  "additionalProperties": true
}
```
