# List Folder Documents

> Perform List Folder Documents through DocuTrack.

Source: [https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_list_folder_documents](https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_list_folder_documents)

Integration: [DocuTrack](https://genhealth.ai/docs/workflows/integrations/docu-track.md)

- Handler: `docutrack_list_folder_documents`

- Connection type: `docutrack`

## Inputs

- `folder_id` — Folder Id (number, required)
  Required numeric value.
- `include_associations` — Include Associations (boolean)
  Optional true-or-false value.
  Default: `false`
- `after_document_id` — After Document Id (number)
  Optional numeric value.
  Default: `0`
- `limit` — Limit (number)
  Optional numeric value.
  Default: `100`

## Outputs

- `success` — Success
- `documents` — Documents
- `count` — Count
- `total_count` — Total Count
- `truncated` — Truncated
- `next_after_id` — Next After Id
- `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": [
    "folder_id"
  ],
  "properties": {
    "limit": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "folder_id": {
      "type": "number",
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "after_document_id": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "include_associations": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "documents": {},
    "truncated": {},
    "total_count": {},
    "next_after_id": {}
  },
  "additionalProperties": true
}
```
