# `Twilio.Content.V1.ContentService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/content/v1/content_service.ex#L2)

A Content resource represents rich messaging content.

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

# `create`

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

Create a Content resource

Operation: `CreateContent` | Tags: Contentv1Content

# `delete`

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

Deletes a Content resource

Operation: `DeleteContent` | Tags: Contentv1Content

# `fetch`

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

Fetch a Content resource by its unique Content Sid

Operation: `FetchContent` | Tags: Contentv1Content

# `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 Contents belonging to the account used to make the request

Operation: `ListContent` | Tags: Contentv1Content

# `stream`

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

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

---

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