Skip to documentation
Faxage integration

Confirm Fax Delivery (Faxage)

Perform Confirm Fax Delivery (Faxage) through Faxage.

View as Markdown
confirm_fax_delivery
writefaxage

Inputs

  • job_id
    expressionrequired
    Job Id

    Required literal value or workflow expression.

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

  • poll_seconds
    number
    Poll Seconds

    Optional numeric value.

    Default: 20

Outputs

  • successSuccess
  • job_idJob Id
  • statusStatus
  • status_detailStatus Detail
  • retryableRetryable
  • 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",
  "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
}
View all Faxage actions