Skip to documentation
Faxage integration

Send Fax (Faxage)

Perform Send Fax (Faxage) through Faxage.

View as Markdown
send_fax
writefaxage

Inputs

  • fax_number
    text
    Fax Number

    Optional text value.

  • document_url
    expression
    Document Url

    Optional literal value or workflow expression.

  • document_id
    expression
    Document Id

    Optional literal value or workflow expression.

  • confirm_delivery
    boolean
    Confirm Delivery

    Optional true-or-false value.

    Default: false

  • confirm_timeout_seconds
    number
    Confirm Timeout Seconds

    Optional numeric value.

    Default: 180

  • confirm_poll_seconds
    number
    Confirm Poll Seconds

    Optional numeric value.

    Default: 20

Outputs

  • job_idJob Id
  • fax_numberFax Number
  • statusStatus
  • status_detailStatus Detail
  • 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": {
    "fax_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_url": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "confirm_delivery": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "confirm_poll_seconds": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "confirm_timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "job_id": {},
    "status": {},
    "fax_number": {},
    "status_detail": {}
  },
  "additionalProperties": true
}
View all Faxage actions