Create Patient Address
Perform Create Patient Address through Brightree.
brightree_create_patient_addresswritebrightree
Inputs
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Address Line 1
address_line_1textOptional text value.
- Address Line 2
address_line_2textOptional text value.
- City
citytextOptional text value.
- State
statetextOptional text value.
- Zip Code
zip_codetextOptional text value.
Outputs
successSuccessmessageMessageerrorError
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
}