# Retrieving Customers

To fetch customer information:

```csharp
var response = chargeOver.GetCustomers();
if (response.Success)
{
  List<Customer> customers = response.Data;
  foreach (var customer in customers)
  {
    Console.WriteLine(customer.CustomerName);
  }
}
```
