# ListCustomersList ## Fields | Field | Type | Required | Description | | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | | `id` | *Nullable[str]* | :heavy_check_mark: | Your unique identifier for the customer. | | `name` | *Nullable[str]* | :heavy_check_mark: | The name of the customer. | | `email` | *Nullable[str]* | :heavy_check_mark: | The email address of the customer. | | `created_at` | *float* | :heavy_check_mark: | Timestamp of customer creation in milliseconds since epoch. | | `fingerprint` | *Nullable[str]* | :heavy_check_mark: | A unique identifier (eg. serial number) to de-duplicate customers across devices or browsers. For example: apple device ID. | | `stripe_id` | *Nullable[str]* | :heavy_check_mark: | Stripe customer ID. | | `env` | [models.ListCustomersEnv](../models/listcustomersenv.md) | :heavy_check_mark: | The environment this customer was created in. | | `metadata` | Dict[str, *Any*] | :heavy_check_mark: | The metadata for the customer. | | `send_email_receipts` | *bool* | :heavy_check_mark: | Whether to send email receipts to the customer. | | `subscriptions` | List[[models.ListCustomersSubscription](../models/listcustomerssubscription.md)] | :heavy_check_mark: | Active and scheduled recurring plans that this customer has attached. | | `purchases` | List[[models.ListCustomersPurchase](../models/listcustomerspurchase.md)] | :heavy_check_mark: | One-time purchases made by the customer. | | `balances` | Dict[str, [models.Balance](../models/balance.md)] | :heavy_check_mark: | Feature balances keyed by feature ID, showing usage limits and remaining amounts. |