# Append Patient Custom Field Value

> Perform Append Patient Custom Field Value through Brightree.

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

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

- Handler: `brightree_append_patient_custom_field_value`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.
- `field_label` — Field Label (expression, required)
  Required literal value or workflow expression.
- `value` — Value (expression, required)
  Required literal value or workflow expression.
- `delimiter` — Delimiter (text)
  Optional text value.

## Outputs

- `success` — Success
- `message` — Message
- `updated_fields` — Updated Fields
- `field_label` — Field Label
- `value` — Value
- `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": [
    "patient_key",
    "field_label",
    "value"
  ],
  "properties": {
    "value": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "delimiter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "field_label": {
      "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": {
    "error": {},
    "value": {},
    "message": {},
    "success": {},
    "field_label": {},
    "updated_fields": {}
  },
  "additionalProperties": true
}
```
