Skip to documentation
Bonafide integration

Update Patient Billing Info

Perform Update Patient Billing Info through Bonafide.

View as Markdown
bonafide_update_patient_billing_info
writebonafide

Inputs

  • customer_id
    expressionrequired
    Customer Id

    Required literal value or workflow expression.

  • same_as_primary_guarantor
    boolean
    Same As Primary Guarantor

    Optional true-or-false value.

    Default: false

  • sales_rep_id
    expression
    Sales Rep Id

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • customer_idCustomer Id
  • sales_rep_idSales Rep Id
  • previous_sales_rep_idPrevious Sales Rep Id
  • same_as_primary_guarantorSame As Primary Guarantor
  • fields_updatedFields Updated
  • messageMessage
  • errorError
  • error_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
}
View all Bonafide actions