# `Ash.Resource.ManualCreate`
[🔗](https://github.com/ash-project/ash/blob/v3.23.1/lib/ash/resource/manual_actions/manual_create.ex#L5)

A module to implement manual create actions.

# `bulk_create`
*optional* 

```elixir
@callback bulk_create(
  changesets :: Enumerable.t(Ash.Changeset.t()),
  opts :: Keyword.t(),
  context :: Ash.Resource.ManualCreate.Context.t()
) :: [
  :ok
  | {:ok, Ash.Resource.record()}
  | {:ok, Ash.Resource.record(),
     %{notifications: [Ash.Notifier.Notification.t()]}}
  | {:ok, Ash.Resource.record(), [Ash.Notifier.Notification.t()]}
  | {:error, Ash.Error.t()}
  | {:notifications, [Ash.Notifier.Notification.t()]}
]
```

# `create`

```elixir
@callback create(
  changeset :: Ash.Changeset.t(),
  opts :: Keyword.t(),
  context :: Ash.Resource.ManualCreate.Context.t()
) ::
  {:ok, Ash.Resource.record()}
  | {:ok, Ash.Resource.record(),
     %{notifications: [Ash.Notifier.Notification.t()]}}
  | {:error, term()}
```

---

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