# List Purchase Order Documents

> Perform List Purchase Order Documents through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_list_purchase_order_documents](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_list_purchase_order_documents)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_list_purchase_order_documents`

- Connection type: `claimsoft`

## Inputs

- `purchase_order_id` — Purchase Order Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `purchase_order_id` — Purchase Order Id
- `total` — Total
- `documents` — Documents
- `inventory_url` — Inventory Url
- `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": [
    "purchase_order_id"
  ],
  "properties": {
    "purchase_order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "total": {},
    "documents": {},
    "inventory_url": {},
    "purchase_order_id": {}
  },
  "additionalProperties": true
}
```
