Skip to main content

Retrieving Invoices

var response = chargeOver.GetInvoices();
if (response.Success)
{
List<Invoice> invoices = response.Data;
foreach (var invoice in invoices)
{
Console.WriteLine(invoice.InvoiceId + ": " + invoice.Total);
}
}