# List Document Management Uploads

> Perform List Document Management Uploads through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_list_document_management_docs](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_list_document_management_docs)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_list_document_management_docs`

- Connection type: `nikohealth`

## Inputs

- `page_size` — Page Size (number)
  Optional numeric value.
  Default: `100`
- `page_index` — Page Index (number)
  Optional numeric value.
  Default: `0`
- `sort` — Sort (text)
  Optional text value.
  Default: `"CreatedOn DESC"`
- `processed_tag_id` — Processed Tag Id (text)
  Optional text value.

## Outputs

- `success` — Success
- `items` — Items
- `count` — Count
- `page_index` — Page Index
- `has_more` — Has More
- `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",
  "properties": {
    "sort": {
      "type": "string",
      "default": "CreatedOn DESC",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "page_size": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "page_index": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "processed_tag_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "items": {},
    "success": {},
    "has_more": {},
    "page_index": {}
  },
  "additionalProperties": true
}
```
