List Faxes (Tellescope)
Perform List Faxes (Tellescope) through Tellescope.
list_tellescope_faxeswritetellescope
Inputs
- Limit
limitnumberOptional numeric value.
Default:
"100" - Lookback Hours
lookback_hoursnumberOptional numeric value.
Default:
"48" - Exclude Tagged
exclude_taggedbooleanOptional true-or-false value.
Default:
"false"
Outputs
faxesFaxescountCounterrorError
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": {
"limit": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"exclude_tagged": {
"type": "boolean",
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"lookback_hours": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"faxes": {}
},
"additionalProperties": true
}