Prepare Brightree Patient Update Payload
Perform Prepare Brightree Patient Update Payload through Tomorrow Health.
tomorrow_health_prepare_brightree_patient_update_payloadwrite
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Requested Fields
requested_fieldsexpressionOptional literal value or workflow expression.
Outputs
successSuccessdocument_idDocument Idpatient_idPatient Idpatient_keyPatient Keymissing_fieldsMissing Fieldsunwritten_requested_fieldsUnwritten Requested Fieldspatient_updatesPatient Updateserror_messageError 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
{
"type": "object",
"required": [
"document_id",
"patient_key"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"requested_fields": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"patient_id": {},
"document_id": {},
"patient_key": {},
"error_message": {},
"missing_fields": {},
"patient_updates": {},
"unwritten_requested_fields": {}
},
"additionalProperties": true
}