Write Prepared Patient Updates
Perform Write Prepared Patient Updates through Brightree.
brightree_write_prepared_patient_updateswritebrightree
Inputs
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Patient Updates
patient_updatesjsonrequiredRequired JSON value.
Outputs
successSuccesspatient_keyPatient Keymissing_fieldsMissing Fieldshas_missing_source_fieldsHas Missing Source Fieldsupdated_fieldsUpdated FieldsmessagesMessageserror_messageError MessageerrorError
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",
"required": [
"patient_key",
"patient_updates"
],
"properties": {
"patient_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_updates": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"messages": {},
"patient_key": {},
"error_message": {},
"missing_fields": {},
"updated_fields": {},
"has_missing_source_fields": {}
},
"additionalProperties": true
}