# `Twilio.Conversations.V1.ServiceService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/conversations/v1/service_service.ex#L2)

A Service resource is a top-level conversation resource container that serves as a data silo.

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

# `create`

```elixir
@spec create(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Conversations.V1.Service.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Create a new conversation service on your account

Operation: `CreateService` | Tags: ConversationsV1Service

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `FriendlyName` | string | The human-readable name of this service, limited to 256 characters. Optional. |

# `delete`

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

Remove a conversation service with all its nested resources from your account

Operation: `DeleteService` | Tags: ConversationsV1Service

# `fetch`

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

Fetch a conversation service from your account

Operation: `FetchService` | Tags: ConversationsV1Service

# `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 all conversation services on your account

Operation: `ListService` | Tags: ConversationsV1Service

# `stream`

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

Stream: Retrieve a list of all conversation services on your account (lazy auto-pagination).

---

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