Update Patient Billing Info
Perform Update Patient Billing Info through Bonafide.
bonafide_update_patient_billing_infowritebonafide
Inputs
- Customer Id
customer_idexpressionrequiredRequired literal value or workflow expression.
- Same As Primary Guarantor
same_as_primary_guarantorbooleanOptional true-or-false value.
Default:
false - Sales Rep Id
sales_rep_idexpressionOptional literal value or workflow expression.
Outputs
successSuccesscustomer_idCustomer Idsales_rep_idSales Rep Idprevious_sales_rep_idPrevious Sales Rep Idsame_as_primary_guarantorSame As Primary Guarantorfields_updatedFields UpdatedmessageMessageerrorErrorerror_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": [
"customer_id"
],
"properties": {
"customer_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"sales_rep_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"same_as_primary_guarantor": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"success": {},
"customer_id": {},
"sales_rep_id": {},
"error_message": {},
"fields_updated": {},
"previous_sales_rep_id": {},
"same_as_primary_guarantor": {}
},
"additionalProperties": true
}