Set Patient Dropdowns
Perform Set Patient Dropdowns through Brightree.
brightree_set_patient_dropdownswritebrightree
Inputs
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Branch Office
branch_officeexpressionOptional literal value or workflow expression.
- Account Group
account_groupexpressionOptional literal value or workflow expression.
- Pos
posexpressionOptional literal value or workflow expression.
- Skip
skipbooleanOptional true-or-false value.
Default:
false - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessmessageMessageupdated_fieldsUpdated Fieldsverification_detailsVerification Detailsbranch_officeBranch Officeaccount_groupAccount GroupposPosskippedSkippederrorError
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"
],
"properties": {
"pos": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skip": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"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"
},
"account_group": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"branch_office": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"pos": {},
"error": {},
"message": {},
"skipped": {},
"success": {},
"account_group": {},
"branch_office": {},
"updated_fields": {},
"verification_details": {}
},
"additionalProperties": true
}