Skip to documentation
MyForms integration

Send Secure Document Request Batches

Perform Send Secure Document Request Batches through MyForms.

View as Markdown
myforms_send_secure_document_request_batches
write

Inputs

  • secure_document_requests
    jsonrequired
    Secure Document Requests

    Required JSON value.

  • max_attempts
    number
    Max Attempts

    Optional numeric value.

    Default: 1

  • retry_interval_seconds
    number
    Retry Interval Seconds

    Optional numeric value.

    Default: 0

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 180

Outputs

  • successSuccess
  • resultsResults
  • sent_countSent Count
  • failed_countFailed Count
  • error_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
}
View all MyForms actions