# List Files (Tellescope)

> Perform List Files (Tellescope) through Tellescope.

Source: [https://genhealth.ai/docs/workflows/integrations/tellescope/list_tellescope_files](https://genhealth.ai/docs/workflows/integrations/tellescope/list_tellescope_files)

Integration: [Tellescope](https://genhealth.ai/docs/workflows/integrations/tellescope.md)

- Handler: `list_tellescope_files`

- Connection type: `tellescope`

## Inputs

- `limit` — Limit (number)
  Optional numeric value.
  Default: `"100"`
- `filter_json` — Filter Json (expression)
  Optional literal value or workflow expression.
- `sort_by` — Sort By (text)
  Optional text value.

## Outputs

- `files` — Files
- `count` — Count
- `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",
  "properties": {
    "limit": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "sort_by": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "filter_json": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "files": {}
  },
  "additionalProperties": true
}
```
