Skip to documentation
Weave integration

List Faxes (Weave)

Perform List Faxes (Weave) through Weave.

View as Markdown
list_weave_faxes
writeweave

Inputs

  • direction
    select
    Direction

    Optional selected identifier or value.

    Options: All (""), Inbound ("INBOUND"), Outbound ("OUTBOUND")

  • limit
    number
    Limit

    Optional numeric value.

    Default: "25"

  • sender
    text
    Sender

    Optional text value.

  • recipient
    text
    Recipient

    Optional text value.

Outputs

  • faxesFaxes
  • countCount
  • errorError

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