# `Twilio.Proxy.V1.Service.Session.InteractionService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/proxy/v1/service/session/interaction_service.ex#L2)

Service for Interaction API operations.

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

# `delete`

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

Delete a specific Interaction.

Operation: `DeleteInteraction` | Tags: ProxyV1Interaction

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), String.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Proxy.V1.Service.Session.Interaction.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).

Operation: `FetchInteraction` | Tags: ProxyV1Interaction

# `list`

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

Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.

Operation: `ListInteraction` | Tags: ProxyV1Interaction

# `stream`

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

Stream: Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page. (lazy auto-pagination).

---

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