# Keep Login Alive

> Perform Keep Login Alive through myCGS.

Source: [https://genhealth.ai/docs/workflows/integrations/my-cgs/mycgs_keepalive](https://genhealth.ai/docs/workflows/integrations/my-cgs/mycgs_keepalive)

Integration: [myCGS](https://genhealth.ai/docs/workflows/integrations/my-cgs.md)

- Handler: `mycgs_keepalive`

- Connection type: `mycgs`

## Inputs

- `enabled` — Enabled (boolean)
  Optional true-or-false value.
  Default: `true`
- `skip_reason` — Skip Reason (expression)
  Optional literal value or workflow expression.
- `jurisdiction` — Jurisdiction (expression)
  Optional literal value or workflow expression.
  Default: `"C"`

## Outputs

- `success` — Success
- `status` — Status
- `skipped` — Skipped
- `needs_human` — Needs Human
- `portal` — Portal
- `jurisdiction` — Jurisdiction
- `logged_in_at` — Logged In At
- `error` — Error
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## 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": {
    "enabled": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "skip_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "jurisdiction": {
      "default": "C",
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "portal": {},
    "status": {},
    "skipped": {},
    "success": {},
    "needs_human": {},
    "jurisdiction": {},
    "logged_in_at": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
