Send Secure Document Request Batches
Perform Send Secure Document Request Batches through MyForms.
myforms_send_secure_document_request_batcheswrite
Inputs
- Secure Document Requests
secure_document_requestsjsonrequiredRequired JSON value.
- Max Attempts
max_attemptsnumberOptional numeric value.
Default:
1 - Retry Interval Seconds
retry_interval_secondsnumberOptional numeric value.
Default:
0 - Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessresultsResultssent_countSent Countfailed_countFailed Counterror_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": [
"secure_document_requests"
],
"properties": {
"max_attempts": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"retry_interval_seconds": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"secure_document_requests": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"results": {},
"success": {},
"sent_count": {},
"failed_count": {},
"error_message": {}
},
"additionalProperties": true
}