# Sync Single Fax Phone to Mobile

> Perform Sync Single Fax Phone to Mobile through Inbound Fax Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/inbound-fax-intake/brightree_sync_single_phone_to_mobile](https://genhealth.ai/docs/workflows/integrations/inbound-fax-intake/brightree_sync_single_phone_to_mobile)

Integration: [Inbound Fax Intake](https://genhealth.ai/docs/workflows/integrations/inbound-fax-intake.md)

- Handler: `brightree_sync_single_phone_to_mobile`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.
- `primary_phone` — Primary Phone (expression)
  Optional literal value or workflow expression.
- `secondary_phone` — Secondary Phone (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `skipped` — Skipped
- `patient_key` — Patient Key
- `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": [
    "patient_key"
  ],
  "properties": {
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "primary_phone": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "secondary_phone": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {},
    "patient_key": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
