# Check Cancellation Or Void Ready

> Perform Check Cancellation Or Void Ready through Authorizations.

Source: [https://genhealth.ai/docs/workflows/integrations/authorizations/authorization_check_cancellation_ready](https://genhealth.ai/docs/workflows/integrations/authorizations/authorization_check_cancellation_ready)

Integration: [Authorizations](https://genhealth.ai/docs/workflows/integrations/authorizations.md)

- Handler: `authorization_check_cancellation_ready`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `auth_type` — Auth Type (expression, required)
  Required literal value or workflow expression.
- `auth_number` — Auth Number (expression)
  Optional literal value or workflow expression.
- `received_date_threshold_hours` — Received Date Threshold Hours (number)
  Optional numeric value.
  Default: `2`

## Outputs

- `success` — Success
- `should_process` — Should Process
- `skip_reason` — Skip Reason
- `mark_complete` — Mark Complete
- `error` — Error

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": [
    "document_id",
    "auth_type"
  ],
  "properties": {
    "auth_type": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "auth_number": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "received_date_threshold_hours": {
      "type": "number",
      "default": 2,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "skip_reason": {},
    "mark_complete": {},
    "should_process": {}
  },
  "additionalProperties": true
}
```
