# Check Submitted Authorizations

> Perform Check Submitted Authorizations through Essette.

Source: [https://genhealth.ai/docs/workflows/integrations/essette/essette_check_existing_authorizations](https://genhealth.ai/docs/workflows/integrations/essette/essette_check_existing_authorizations)

Integration: [Essette](https://genhealth.ai/docs/workflows/integrations/essette.md)

- Handler: `essette_check_existing_authorizations`

- Connection type: `essette`

## Inputs

- `essette_account_id` — Essette Account Id (select, required, dynamic options)
  Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
  Default: `"primary"`
- `plan_id` — Plan Id (expression, required)
  Required literal value or workflow expression.
- `lookback_days` — Lookback Days (number)
  Optional numeric value.
  Default: `365`

## Outputs

- `success` — Success
- `count` — Count
- `results` — Results
- `has_existing` — Has Existing
- `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",
  "required": [
    "essette_account_id",
    "plan_id"
  ],
  "properties": {
    "plan_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "lookback_days": {
      "type": "number",
      "default": 365,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "essette_account_id": {
      "type": "string",
      "default": "primary",
      "description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "results": {},
    "success": {},
    "has_existing": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
