Skip to documentation
Brightree integration

Create Patient Address

Perform Create Patient Address through Brightree.

View as Markdown
brightree_create_patient_address
writebrightree

Inputs

  • patient_key
    expression
    Patient Key

    Optional literal value or workflow expression.

  • address_line_1
    text
    Address Line 1

    Optional text value.

  • address_line_2
    text
    Address Line 2

    Optional text value.

  • city
    text
    City

    Optional text value.

  • state
    text
    State

    Optional text value.

  • zip_code
    text
    Zip Code

    Optional text value.

Outputs

  • successSuccess
  • messageMessage
  • errorError

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
{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "zip_code": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "address_line_1": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "address_line_2": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {}
  },
  "additionalProperties": true
}
View all Brightree actions