Send Workflow Fax
Perform Send Workflow Fax through MyForms.
myforms_send_workflow_faxwrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Document Ids
document_idsjsonrequiredRequired JSON value.
- Recipient Name
recipient_nametextrequiredRequired text value.
- Recipient Fax Number
recipient_fax_numbertextrequiredRequired text value.
- Recipient Phone Number
recipient_phone_numbertextOptional text value.
- Cover Sheet Title
cover_sheet_titletextrequiredRequired text value.
- Cover Sheet Id
cover_sheet_idtextOptional text value.
- Notes Html
notes_htmltextareaOptional text value.
- Fax Number Id
fax_number_idtextOptional text value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccesssentSentdocument_idsDocument Idserror_messageError Message
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": [
"workflow_id",
"document_ids",
"recipient_name",
"recipient_fax_number",
"cover_sheet_title"
],
"properties": {
"notes_html": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "textarea"
},
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_ids": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"fax_number_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"cover_sheet_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"recipient_name": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"cover_sheet_title": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"recipient_fax_number": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"recipient_phone_number": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"sent": {},
"success": {},
"document_ids": {},
"error_message": {}
},
"additionalProperties": true
}