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

CustomerPortalMemberCreate

Schema for adding a new member to the customer's team.

# `t`

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

* `email` - The email address of the new member. Format: email.
* `name` - The name of the new member (optional). Nullable.
* `role` - The role for the new member. Defaults to 'member'.

# `schema_name`

---

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