# `PolarExpress.Schemas.MemberCreate`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/member_create.ex#L2)

MemberCreate

Schema for creating a new member.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.MemberCreate{
  customer_id: String.t() | nil,
  email: String.t() | nil,
  external_id: String.t() | nil,
  name: String.t() | nil,
  role: PolarExpress.Schemas.MemberRole.t() | nil
}
```

* `customer_id` - The ID of the customer this member belongs to. Format: uuid4.
* `email` - The email address of the member. Format: email.
* `external_id` - The ID of the member in your system. This must be unique within the customer. Nullable.
* `name` - Nullable.
* `role` - The role of the member within the customer.

# `schema_name`

---

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