Skip to documentation
GenHealth - Renewals integration

Prepare Initial Renewal Send Schedule

Perform Prepare Initial Renewal Send Schedule through GenHealth - Renewals.

View as Markdown
renewal_prepare_initial_send_schedule
write

Inputs

  • scheduled_date
    daterequired
    Scheduled Date

    Required date in YYYY-MM-DD format.

  • account_key
    text
    Account Key

    Optional text value.

  • lead_days
    number
    Lead Days

    Optional numeric value.

    Default: 62

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

  • use_local_agent
    boolean
    Use Local Agent

    Optional true-or-false value.

    Default: false

  • assignment_distribution_window_days
    number
    Assignment Distribution Window Days

    Optional numeric value.

    Default: 7

  • trigger_payload
    json
    Trigger Payload

    Optional JSON value.

Outputs

  • should_processShould Process
  • dry_runDry Run
  • end_dateEnd Date
  • start_dateStart Date
  • account_keyAccount Key
  • use_local_agentUse Local Agent
  • assignment_plan_job_idAssignment Plan Job Id
  • assignment_distribution_window_daysAssignment Distribution Window Days

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": [
    "scheduled_date"
  ],
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "lead_days": {
      "type": "number",
      "default": 62,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "scheduled_date": {
      "type": "string",
      "format": "date",
      "description": "Required 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"
    },
    "assignment_distribution_window_days": {
      "type": "number",
      "default": 7,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "dry_run": {},
    "end_date": {},
    "start_date": {},
    "account_key": {},
    "should_process": {},
    "use_local_agent": {},
    "assignment_plan_job_id": {},
    "assignment_distribution_window_days": {}
  },
  "additionalProperties": true
}
View all GenHealth - Renewals actions