Send Fax (Faxage)
Perform Send Fax (Faxage) through Faxage.
send_faxwritefaxage
Inputs
- Fax Number
fax_numbertextOptional text value.
- Document Url
document_urlexpressionOptional literal value or workflow expression.
- Document Id
document_idexpressionOptional literal value or workflow expression.
- Confirm Delivery
confirm_deliverybooleanOptional true-or-false value.
Default:
false - Confirm Timeout Seconds
confirm_timeout_secondsnumberOptional numeric value.
Default:
180 - Confirm Poll Seconds
confirm_poll_secondsnumberOptional numeric value.
Default:
20
Outputs
job_idJob Idfax_numberFax NumberstatusStatusstatus_detailStatus DetailerrorError
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
}