# Evaluate Consignment Prior Authorization

> Perform Evaluate Consignment Prior Authorization through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/evaluate_consignment_prior_authorization](https://genhealth.ai/docs/workflows/integrations/consignment-intake/evaluate_consignment_prior_authorization)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `evaluate_consignment_prior_authorization`

## Inputs

- `payer_id` — Payer Id (expression, required)
  Required literal value or workflow expression.
- `item_identities` — Item Identities (json, required)
  Required JSON value.
- `eligibility_verified` — Eligibility Verified (boolean)
  Optional true-or-false value.

## Outputs

- `success` — Success
- `prior_authorization_required` — Prior Authorization Required
- `review_required` — Review Required
- `review_reason` — Review Reason
- `review_reasons` — Review Reasons
- `alert_type_id` — Alert Type Id
- `alert_comment` — Alert Comment
- `state` — State

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": [
    "payer_id",
    "item_identities"
  ],
  "properties": {
    "payer_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "item_identities": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "eligibility_verified": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "state": {},
    "success": {},
    "alert_comment": {},
    "alert_type_id": {},
    "review_reason": {},
    "review_reasons": {},
    "review_required": {},
    "prior_authorization_required": {}
  },
  "additionalProperties": true
}
```
