Select Renewal Follow-Up Candidates
Perform Select Renewal Follow-Up Candidates through GenHealth - Renewals.
renewal_select_subsequent_candidateswrite
Inputs
- Attempt Type
attempt_typeselectOptional selected identifier or value.
Default:
"both"Options: Second Attempt ("2"), Third Attempt ("3"), Both ("both")
- Due Within Days
due_within_daysnumberOptional numeric value.
- Min Days Between Attempts
min_days_between_attemptsnumberOptional numeric value.
- Max Orders
max_ordersnumberOptional numeric value.
- States
statesjsonOptional JSON value.
- Account Key
account_keytextOptional text value.
- User Id
user_idnumberOptional numeric value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false - Trigger Payload
trigger_payloadjsonOptional JSON value.
Outputs
should_processShould ProcessitemsItemsjob_idJob IdrequestRequest
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",
"properties": {
"states": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"user_id": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"max_orders": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"account_key": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"attempt_type": {
"enum": [
"2",
"3",
"both"
],
"type": "string",
"default": "both",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"due_within_days": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"trigger_payload": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"min_days_between_attempts": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"items": {},
"job_id": {},
"request": {},
"should_process": {}
},
"additionalProperties": true
}