Edit Patient Insurance Policy Batches
Perform Edit Patient Insurance Policy Batches through Brightree.
brightree_edit_patient_insurance_policy_batcheswrite
Inputs
- Policy Edit Batches
policy_edit_batchesjsonrequiredRequired JSON value.
- Stop On Failure
stop_on_failurebooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessresultsResultsupdated_countUpdated Countfailed_countFailed Counterror_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": [
"policy_edit_batches"
],
"properties": {
"stop_on_failure": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"policy_edit_batches": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"results": {},
"success": {},
"failed_count": {},
"error_message": {},
"updated_count": {}
},
"additionalProperties": true
}