# Get Order Authorizations

> Perform Get Order Authorizations through ExaPACS.

Source: [https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_get_order_authorizations](https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_get_order_authorizations)

Integration: [ExaPACS](https://genhealth.ai/docs/workflows/integrations/exa-pacs.md)

- Handler: `exapacs_get_order_authorizations`

- Connection type: `exapacs`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `cpt_code` — Cpt Code (expression)
  Optional literal value or workflow expression.

## Outputs

- `status` — Status
- `authorizations` — Authorizations
- `match_count` — Match Count
- `authorization_no` — Authorization No
- `authorization_numbers` — Authorization Numbers
- `cpt_codes_on_order` — Cpt Codes On Order
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "order_id"
  ],
  "properties": {
    "cpt_code": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "match_count": {},
    "authorizations": {},
    "authorization_no": {},
    "cpt_codes_on_order": {},
    "authorization_numbers": {}
  },
  "additionalProperties": true
}
```
