Set Patient Facility
Perform Set Patient Facility through Brightree.
brightree_set_patient_facilitywritebrightree
Inputs
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Facility Text
facility_textexpressionrequiredRequired literal value or workflow expression.
- Facility Value
facility_valueexpressionrequiredRequired literal value or workflow expression.
- Skip If Missing
skip_if_missingbooleanOptional true-or-false value.
Default:
false - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessmessageMessageupdated_fieldsUpdated FieldsskippedSkippederrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"patient_key",
"facility_text",
"facility_value"
],
"properties": {
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"patient_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"facility_text": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"facility_value": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skip_if_missing": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"skipped": {},
"success": {},
"updated_fields": {}
},
"additionalProperties": true
}