Skip to documentation
MyForms integration

Select Facility Document Candidates

Perform Select Facility Document Candidates through MyForms.

View as Markdown
myforms_select_facility_document_candidates
write

Inputs

  • account_key
    textrequired
    Account Key

    Required text value.

    Default: "soundview_intake"

  • from_date
    textrequired
    From Date

    Required text value.

    Default: "09/03/2026"

  • max_candidates
    numberrequired
    Max Candidates

    Required numeric value.

    Default: 10

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

  • trigger_payload
    json
    Trigger Payload

    Optional JSON value.

Outputs

  • successSuccess
  • itemsItems
  • candidate_countCandidate Count
  • source_rows_scannedSource Rows Scanned
  • handled_skippedHandled Skipped
  • pending_retry_skippedPending Retry Skipped
  • unreadable_skippedUnreadable Skipped
  • max_candidatesMax Candidates
  • dry_runDry Run
  • account_keyAccount Key
  • from_dateFrom Date
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
Yes

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "account_key",
    "from_date",
    "max_candidates"
  ],
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "from_date": {
      "type": "string",
      "default": "09/03/2026",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "account_key": {
      "type": "string",
      "default": "soundview_intake",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "max_candidates": {
      "type": "number",
      "default": 10,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "trigger_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "items": {},
    "dry_run": {},
    "success": {},
    "from_date": {},
    "account_key": {},
    "max_candidates": {},
    "candidate_count": {},
    "handled_skipped": {},
    "unreadable_skipped": {},
    "source_rows_scanned": {},
    "pending_retry_skipped": {}
  },
  "additionalProperties": true
}
View all MyForms actions