# Add Doctor Address

> Perform Add Doctor Address through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_add_physician_address](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_add_physician_address)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_add_physician_address`

- Connection type: `bonafide`

## Inputs

- `physician_id` — Physician Id (expression, required)
  Required literal value or workflow expression.
- `location` — Location (expression, required)
  Required literal value or workflow expression.
- `address1` — Address1 (expression, required)
  Required literal value or workflow expression.
- `address2` — Address2 (expression)
  Optional literal value or workflow expression.
- `zipcode` — Zipcode (expression, required)
  Required literal value or workflow expression.
- `city` — City (expression, required)
  Required literal value or workflow expression.
- `state` — State (expression, required)
  Required literal value or workflow expression.
- `phone` — Phone (expression)
  Optional literal value or workflow expression.
- `ext` — Ext (expression)
  Optional literal value or workflow expression.
- `fax` — Fax (expression)
  Optional literal value or workflow expression.
- `is_contact` — Is Contact (select)
  Optional selected identifier or value.
  Default: `"contact"`
  Options: Contact ("contact"), Do Not Contact ("do_not_contact")
- `contact_methods` — Contact Methods (multi_select)
  Optional list of selected values.
  Default: `["Print"]`
  Options: Fax ("Fax"), Print ("Print"), DocuSign ("DocuSign"), Parachute ("Parachute")

## Outputs

- `success` — Success
- `physician_id` — Physician Id
- `message` — Message
- `error` — Error
- `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": [
    "physician_id",
    "location",
    "address1",
    "zipcode",
    "city",
    "state"
  ],
  "properties": {
    "ext": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "fax": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "city": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "phone": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "state": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "zipcode": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "address1": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "address2": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "location": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "is_contact": {
      "enum": [
        "contact",
        "do_not_contact"
      ],
      "type": "string",
      "default": "contact",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "physician_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "contact_methods": {
      "type": "array",
      "items": {
        "enum": [
          "Fax",
          "Print",
          "DocuSign",
          "Parachute"
        ],
        "type": "string"
      },
      "default": [
        "Print"
      ],
      "description": "Optional list of selected values.",
      "x-workflow-field-type": "multi_select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "physician_id": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
