Get New Faxes (Weave)
Perform Get New Faxes (Weave) through Weave.
get_new_weave_faxeswriteweave
Inputs
- Start
startdateOptional date in YYYY-MM-DD format.
Default:
"08-17-2026" - End
enddateOptional date in YYYY-MM-DD format.
Default:
"08-24-2026" - Sender
sendertextOptional text value.
- Recipient
recipienttextOptional text value.
Outputs
No named outputs are declared for this action.
Output schema completeness: unknown
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": {
"end": {
"type": "string",
"format": "date",
"default": "08-24-2026",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"start": {
"type": "string",
"format": "date",
"default": "08-17-2026",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"sender": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"recipient": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {},
"additionalProperties": true
}