# `Twilio.Memory.V1.ControlPlane.StoreService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/memory/v1/control_plane/store_service.ex#L2)

Service for Store API operations.

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

# `create`

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

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Create a new Memory Store for the Twilio account. Accounts can have multiple memory stores, up to a maximum limit of 15.
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Each memory store will automatically provision other dependent resources as needed, including Conversational Intelligence
capabilities.

Operation: `CreateStore` | Tags: Store

# `delete`

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

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Deletes the Memory Store and all associated resources including identity resolution settings, trait groups, profiles, traits, observations, and summaries.

Operation: `DeleteStore` | Tags: Store

# `fetch`

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

Retrieve the details of a specific Memory Store by its unique ID.

Operation: `FetchStore` | Tags: Store

# `list`

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

Get a list of memory stores for the Twilio account.

Operation: `ListStores` | Tags: Store

# `stream`

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

Stream: Get a list of memory stores for the Twilio account. (lazy auto-pagination).

---

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