Assign Fax to User
Perform Assign Fax to User through Brightree.
brightree_assign_fax_to_userwritebrightree
Inputs
- Fax Key
fax_keyexpressionOptional literal value or workflow expression.
- User Name
user_nametextOptional text value.
- User Key
user_keynumberOptional numeric value.
- Received Date From
received_date_fromdateOptional date in YYYY-MM-DD format.
- Received Date To
received_date_todateOptional date in YYYY-MM-DD format.
- 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.
Outputs
successSuccessfax_keyFax KeyerrorError
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",
"properties": {
"fax_key": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"user_key": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"user_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"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",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"received_date_from": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"fax_key": {},
"success": {}
},
"additionalProperties": true
}