# `Twilio.Api.V2010.TranscriptionService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/api/v2010/transcription_service.ex#L2)

Text transcriptions of call recordings

Operations: `list`, `fetch`, `delete`

# `delete`

```elixir
@spec delete(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, map()} | {:ok, map(), map()} | :ok | {:error, Twilio.Error.t()}
```

Delete a transcription from the account used to make the request

Operation: `DeleteTranscription` | Tags: Api20100401Transcription

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Api.V2010.Transcription.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch an instance of a Transcription

Operation: `FetchTranscription` | Tags: Api20100401Transcription

# `list`

```elixir
@spec list(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a list of transcriptions belonging to the account used to make the request

Operation: `ListTranscription` | Tags: Api20100401Transcription

# `stream`

```elixir
@spec stream(Twilio.Client.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieve a list of transcriptions belonging to the account used to make the request (lazy auto-pagination).

---

*Consult [api-reference.md](api-reference.md) for complete listing*
