# List Faxes (RingCentral)

> Perform List Faxes (RingCentral) through RingCentral.

Source: [https://genhealth.ai/docs/workflows/integrations/ring-central/list_ringcentral_faxes](https://genhealth.ai/docs/workflows/integrations/ring-central/list_ringcentral_faxes)

Integration: [RingCentral](https://genhealth.ai/docs/workflows/integrations/ring-central.md)

- Handler: `list_ringcentral_faxes`

- Connection type: `ringcentral`

## Inputs

- `days_back` — Days Back (number)
  Optional numeric value.
  Default: `90`
- `from_number` — From Number (text)
  Optional text value.
- `limit` — Limit (number)
  Optional numeric value.

## Outputs

- `success` — Success
- `faxes` — Faxes
- `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"
    },
    "days_back": {
      "type": "number",
      "default": 90,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "from_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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