List Faxes (Weave)
Perform List Faxes (Weave) through Weave.
list_weave_faxeswriteweave
Inputs
- Direction
directionselectOptional selected identifier or value.
Options: All (""), Inbound ("INBOUND"), Outbound ("OUTBOUND")
- Limit
limitnumberOptional numeric value.
Default:
"25" - Sender
sendertextOptional text value.
- Recipient
recipienttextOptional text value.
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"
},
"sender": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"direction": {
"enum": [
"",
"INBOUND",
"OUTBOUND"
],
"type": "string",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"recipient": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"faxes": {}
},
"additionalProperties": true
}