# Read Task Detail

> Perform Read Task Detail through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_read_task_detail](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_read_task_detail)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_read_task_detail`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.
- `patient_note_key` — Patient Note Key (expression, required)
  Required literal value or workflow expression.
- `patient_note_type_key` — Patient Note Type Key (select, required)
  Required selected identifier or value.
  Default: `"2"`
  Options: CMN Note ("4"), Deposit Note ("14"), Financial Note ("8"), Intake ("16"), Item Maintenance ("1"), PAR Note ("6"), Patient ("2"), Pickup Exchange WIP State ("15"), Practitioner Note ("7"), Progress Note ("13"), Referral ("10"), WIP State ("9")

## Outputs

- `patient` — Patient

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

```json
{
  "type": "object",
  "required": [
    "patient_key",
    "patient_note_key",
    "patient_note_type_key"
  ],
  "properties": {
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_note_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_note_type_key": {
      "enum": [
        "4",
        "14",
        "8",
        "16",
        "1",
        "6",
        "2",
        "15",
        "7",
        "13",
        "10",
        "9"
      ],
      "type": "string",
      "default": "2",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "patient": {}
  },
  "additionalProperties": true
}
```
