# Create Initial Renewal Assignment Plan

> Perform Create Initial Renewal Assignment Plan through GenHealth - Renewals.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health-renewals/renewal_prepare_initial_assignment_plan](https://genhealth.ai/docs/workflows/integrations/gen-health-renewals/renewal_prepare_initial_assignment_plan)

Integration: [GenHealth - Renewals](https://genhealth.ai/docs/workflows/integrations/gen-health-renewals.md)

- Handler: `renewal_prepare_initial_assignment_plan`

## Inputs

- `start_date` — Start Date (date)
  Optional date in YYYY-MM-DD format.
- `end_date` — End Date (date)
  Optional date in YYYY-MM-DD format.
- `scheduled_date` — Scheduled Date (date)
  Optional date in YYYY-MM-DD format.
- `target_months_ahead` — Target Months Ahead (number)
  Optional numeric value.
- `account_key` — Account Key (text)
  Optional text value.
- `use_local_agent` — Use Local Agent (boolean)
  Optional true-or-false value.
  Default: `false`
- `assignment_distribution_window_days` — Assignment Distribution Window Days (number)
  Optional numeric value.
  Default: `7`
- `send_email` — Send Email (boolean)
  Optional true-or-false value.
  Default: `false`
- `to_emails` — To Emails (json)
  Optional JSON value.
- `cc_emails` — Cc Emails (json)
  Optional JSON value.
- `subject` — Subject (text)
  Optional text value.
- `greeting_name` — Greeting Name (text)
  Optional text value.
- `trigger_payload` — Trigger Payload (json)
  Optional 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
```
