# Post PCP Auth Missing Alert

> Perform Post PCP Auth Missing Alert through eClinicalWorks.

Source: [https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_post_pcp_auth_missing_alert](https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_post_pcp_auth_missing_alert)

Integration: [eClinicalWorks](https://genhealth.ai/docs/workflows/integrations/eclinicalworks.md)

- Handler: `ecw_post_pcp_auth_missing_alert`

- Connection type: `eclinicalworks`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `dos` — Dos (date, required)
  Required date in YYYY-MM-DD format.
- `visit_type` — Visit Type (text)
  Optional text value.

## Outputs

- `success` — Success
- `halted` — Halted

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": [
    "patient_id",
    "dos"
  ],
  "properties": {
    "dos": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "visit_type": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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