List Inbound Faxes
Perform List Inbound Faxes through Brightree.
brightree_list_inbound_faxesreadbrightree
Inputs
- Received Date From
received_date_fromdateOptional date in YYYY-MM-DD format.
Default:
"2026-08-13" - Received Date To
received_date_todateOptional date in YYYY-MM-DD format.
Default:
"2026-08-13" - Work Status
work_statustextOptional text value.
- Show Unassigned
show_unassignedbooleanOptional true-or-false value.
- Branch Offices
branch_officesmulti_selectdynamic optionsOptional list of selected values. Retrieve allowed values from the dynamic options endpoint.
- Exclude Nonempty Report Type
exclude_nonempty_report_typebooleanOptional true-or-false value.
- Max Pages
max_pagesnumberOptional numeric value.
Default:
50 - Max Items
max_itemsnumberOptional numeric value.
Outputs
faxesFaxescountCounttotal_itemsTotal Itemstotal_pagesTotal Pageshas_moreHas MoremessageMessage
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": {
"max_items": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"max_pages": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"work_status": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"branch_offices": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "multi_select"
},
"show_unassigned": {
"type": "boolean",
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"received_date_to": {
"type": "string",
"format": "date",
"default": "2026-08-13",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"received_date_from": {
"type": "string",
"format": "date",
"default": "2026-08-13",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"exclude_nonempty_report_type": {
"type": "boolean",
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"faxes": {},
"message": {},
"has_more": {},
"total_items": {},
"total_pages": {}
},
"additionalProperties": true
}