# List Recordings

> Perform List Recordings through Plivo.

Source: [https://genhealth.ai/docs/workflows/integrations/plivo/plivo_list_recordings](https://genhealth.ai/docs/workflows/integrations/plivo/plivo_list_recordings)

Integration: [Plivo](https://genhealth.ai/docs/workflows/integrations/plivo.md)

- Handler: `plivo_list_recordings`

- Connection type: `plivo`

## Inputs

- `call_uuid` — Call Uuid (expression)
  Optional literal value or workflow expression.
- `limit` — Limit (number)
  Optional numeric value.
  Default: `20`
- `offset` — Offset (number)
  Optional numeric value.
  Default: `0`

## Outputs

- `success` — Success
- `recordings` — Recordings
- `count` — Count

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": {
    "limit": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "offset": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "call_uuid": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "success": {},
    "recordings": {}
  },
  "additionalProperties": true
}
```
