Select Facility Document Candidates
Perform Select Facility Document Candidates through MyForms.
myforms_select_facility_document_candidateswrite
Inputs
- Account Key
account_keytextrequiredRequired text value.
Default:
"soundview_intake" - From Date
from_datetextrequiredRequired text value.
Default:
"09/03/2026" - Max Candidates
max_candidatesnumberrequiredRequired numeric value.
Default:
10 - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false - Trigger Payload
trigger_payloadjsonOptional JSON value.
Outputs
successSuccessitemsItemscandidate_countCandidate Countsource_rows_scannedSource Rows Scannedhandled_skippedHandled Skippedpending_retry_skippedPending Retry Skippedunreadable_skippedUnreadable Skippedmax_candidatesMax Candidatesdry_runDry Runaccount_keyAccount Keyfrom_dateFrom DateerrorError
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
}