# `Twilio.Intelligence.V2.TranscriptService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/intelligence/v2/transcript_service.ex#L2)

Service for Transcript API operations.

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

# `create`

```elixir
@spec create(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Intelligence.V2.Transcript.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Create a new Transcript for the service

Operation: `CreateTranscript` | Tags: IntelligenceV2Transcript

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `Channel` | string | JSON object describing Media Channel including Source and Participants |
| `ServiceSid` | string | The unique SID identifier of the Service. |
## Optional Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `CustomerKey` | string | Used to store client provided metadata. Maximum of 64 double-byte UTF8 characters. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `MediaStartTime` | string (date-time) | The date that this Transcript's media was started, given in ISO 8601 format. |

# `delete`

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

Delete a specific Transcript.

Operation: `DeleteTranscript` | Tags: IntelligenceV2Transcript

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Intelligence.V2.Transcript.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a specific Transcript.

Operation: `FetchTranscript` | Tags: IntelligenceV2Transcript

# `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 Transcripts for a given service.

Operation: `ListTranscript` | Tags: IntelligenceV2Transcript

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `ServiceSid` | string | The unique SID identifier of the Service. |
| `BeforeStartTime` | string | Filter by before StartTime. |
| `AfterStartTime` | string | Filter by after StartTime. |
| `BeforeDateCreated` | string | Filter by before DateCreated. |
| `AfterDateCreated` | string | Filter by after DateCreated. |
| `Status` | string | Filter by status. |
| `LanguageCode` | string | Filter by Language Code. |
| `SourceSid` | string | Filter by SourceSid. |

# `stream`

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

Stream: Retrieve a list of Transcripts for a given service. (lazy auto-pagination).

---

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