Confirm Fax Delivery (Faxage)
Perform Confirm Fax Delivery (Faxage) through Faxage.
confirm_fax_deliverywritefaxage
Inputs
- Job Id
job_idexpressionrequiredRequired literal value or workflow expression.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180 - Poll Seconds
poll_secondsnumberOptional numeric value.
Default:
20
Outputs
successSuccessjob_idJob IdstatusStatusstatus_detailStatus DetailretryableRetryableerrorError
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",
"required": [
"job_id"
],
"properties": {
"job_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"poll_seconds": {
"type": "number",
"default": 20,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"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": {},
"success": {},
"retryable": {},
"status_detail": {}
},
"additionalProperties": true
}