# Create Patient From Document

> Perform Create Patient From Document through Brightree.

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

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

- Handler: `brightree_create_patient_from_document`

- Connection type: `brightree`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `patient_id` — Patient Id
- `patient_name` — Patient Name
- `birth_date` — Birth Date
- `patient_key` — Patient Key
- `external_id` — External Id
- `created` — Created
- `message` — 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"
  ],
  "properties": {
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "created": {},
    "message": {},
    "success": {},
    "birth_date": {},
    "patient_id": {},
    "document_id": {},
    "external_id": {},
    "patient_key": {},
    "patient_name": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
