Skip to documentation
Brightree integration

Search Receipt Invoices

Perform Search Receipt Invoices through Brightree.

View as Markdown
brightree_search_receipt_invoices
readbrightree

Inputs

  • deposit_key
    expression
    Deposit Key

    Optional literal value or workflow expression.

  • receipt_key
    expression
    Receipt Key

    Optional literal value or workflow expression.

  • search_criteria
    expression
    Search Criteria

    Optional literal value or workflow expression.

  • exclude_zero_balances
    boolean
    Exclude Zero Balances

    Optional true-or-false value.

    Default: true

  • include_patient
    boolean
    Include Patient

    Optional true-or-false value.

    Default: true

  • include_insurance
    boolean
    Include Insurance

    Optional true-or-false value.

    Default: true

  • include_facility
    boolean
    Include Facility

    Optional true-or-false value.

    Default: false

Outputs

  • deposit_keyDeposit Key
  • receipt_keyReceipt Key
  • invoicesInvoices
  • countCount
  • messageMessage
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "deposit_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "receipt_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_patient": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "search_criteria": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_facility": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "include_insurance": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "exclude_zero_balances": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "message": {},
    "invoices": {},
    "deposit_key": {},
    "receipt_key": {}
  },
  "additionalProperties": true
}
View all Brightree actions