# Process Renewal Follow-Up Candidate

> Perform Process Renewal Follow-Up Candidate through GenHealth - Renewals.

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

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

- Handler: `renewal_process_subsequent_item`

## Inputs

- `job_id` — Job Id (text, required)
  Required text value.
- `request` — Request (json, required)
  Required JSON value.
- `item` — Item (json, required)
  Required 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",
  "required": [
    "job_id",
    "request",
    "item"
  ],
  "properties": {
    "item": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "job_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "request": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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