Create Initial Renewal Assignment Plan
Perform Create Initial Renewal Assignment Plan through GenHealth - Renewals.
renewal_prepare_initial_assignment_planwrite
Inputs
- Start Date
start_datedateOptional date in YYYY-MM-DD format.
- End Date
end_datedateOptional date in YYYY-MM-DD format.
- Scheduled Date
scheduled_datedateOptional date in YYYY-MM-DD format.
- Target Months Ahead
target_months_aheadnumberOptional numeric value.
- Account Key
account_keytextOptional text value.
- Use Local Agent
use_local_agentbooleanOptional true-or-false value.
Default:
false - Assignment Distribution Window Days
assignment_distribution_window_daysnumberOptional numeric value.
Default:
7 - Send Email
send_emailbooleanOptional true-or-false value.
Default:
false - To Emails
to_emailsjsonOptional JSON value.
- Cc Emails
cc_emailsjsonOptional JSON value.
- Subject
subjecttextOptional text value.
- Greeting Name
greeting_nametextOptional text value.
- Trigger Payload
trigger_payloadjsonOptional JSON value.
Outputs
No named outputs are declared for this action.
Output schema completeness: unknown
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",
"properties": {
"subject": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"end_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"cc_emails": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"to_emails": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"send_email": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"start_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"account_key": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"greeting_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"scheduled_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"trigger_payload": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"use_local_agent": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"target_months_ahead": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"assignment_distribution_window_days": {
"type": "number",
"default": 7,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {},
"additionalProperties": true
}