# Get Transcription

> Perform Get Transcription through Plivo.

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

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

- Handler: `plivo_get_transcription`

- Connection type: `plivo`

## Inputs

- `recording_id` — Recording Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `transcription` — Transcription

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": [
    "recording_id"
  ],
  "properties": {
    "recording_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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