Skip to documentation
Weave integration

Get New Faxes (Weave)

Perform Get New Faxes (Weave) through Weave.

View as Markdown
get_new_weave_faxes
writeweave

Inputs

  • start
    date
    Start

    Optional date in YYYY-MM-DD format.

    Default: "08-17-2026"

  • end
    date
    End

    Optional date in YYYY-MM-DD format.

    Default: "08-24-2026"

  • sender
    text
    Sender

    Optional text value.

  • recipient
    text
    Recipient

    Optional 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
}
View all Weave actions