# Get ExaPACS Worklist Item

> Perform Get ExaPACS Worklist Item through ExaPACS.

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

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

- Handler: `get_exapacs_worklist_item`

- Connection type: `exapacs`

## Inputs

- `patient_first_name` — Patient First Name (expression, required)
  Required literal value or workflow expression.
- `patient_last_name` — Patient Last Name (expression, required)
  Required literal value or workflow expression.
- `patient_birth_date` — Patient Birth Date (expression, required)
  Required literal value or workflow expression.
- `dos` — Dos (text)
  Optional text value.
- `accession_number` — Accession Number (expression)
  Optional literal value or workflow expression.

## Outputs

- `status` — Status
- `item` — Item
- `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": [
    "patient_first_name",
    "patient_last_name",
    "patient_birth_date"
  ],
  "properties": {
    "dos": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "accession_number": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_last_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_birth_date": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_first_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "item": {},
    "error": {},
    "status": {}
  },
  "additionalProperties": true
}
```
