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

CustomerTeamCreate

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerTeamCreate{
  billing_address: term(),
  email: term(),
  external_id: term(),
  locale: term(),
  metadata: term(),
  name: term(),
  organization_id: term(),
  owner: term(),
  tax_id: term(),
  type: term()
}
```

* `billing_address` - Nullable.
* `email` - The email address of the team customer. Optional for team customers — if omitted, an owner with an email must be provided. Nullable.
* `external_id` - The ID of the customer in your system. This must be unique within the organization. Once set, it can't be updated. Nullable.
* `locale` - Nullable.
* `metadata` - Key-value object allowing you to store additional information.

The key must be a string with a maximum length of **40 characters**.
The value must be either:

* A string with a maximum length of **500 characters**
* An integer
* A floating-point number
* A boolean

You can store up to **50 key-value pairs**.
* `name` - Nullable.
* `organization_id` - The ID of the organization owning the customer. **Required unless you use an organization token.** Nullable.
* `owner` - Optional owner member to create with the customer. If not provided, an owner member will be automatically created using the customer's email and name. Nullable.
* `tax_id` - Nullable.
* `type`

# `schema_name`

---

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