# Push Authorization To Billing System

> Perform Push Authorization To Billing System through Authorizations.

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

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

- Handler: `authorization_push_to_billing_system`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `auth_type` — Auth Type (expression)
  Optional literal value or workflow expression.
- `insurance_policy_id` — Insurance Policy Id (expression)
  Optional literal value or workflow expression.
- `eligibility` — Eligibility (expression)
  Optional literal value or workflow expression.
- `patient_exists` — Patient Exists (expression)
  Optional literal value or workflow expression.
- `niko_patient_id` — Niko Patient Id (expression)
  Optional literal value or workflow expression.
- `create_review_task` — Create Review Task (boolean)
  Optional true-or-false value.
  Default: `"true"`

## Outputs

- `success` — Success
- `pushed` — Pushed
- `status` — Status
- `url` — Url
- `external_id` — External Id
- `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"
  ],
  "properties": {
    "auth_type": {
      "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"
    },
    "eligibility": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_exists": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "niko_patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "create_review_task": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "insurance_policy_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "url": {},
    "error": {},
    "pushed": {},
    "status": {},
    "success": {},
    "external_id": {}
  },
  "additionalProperties": true
}
```
