# Invoices

Invoices are statements of amounts owed by a customer, and are either generated one-off, or generated periodically from a subscription.

## List all invoices

 - [GET /invoices](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_listinvoices.md): Retrieves a paginated list of all invoices for the authenticated account. Supports pagination and filtering.

## Create an invoice

 - [POST /invoices](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_createinvoice.md): Creates a new invoice for a customer. The invoice will include line items, pricing, taxes, and other billing information. The invoice will be in draft status until paid or committed.

## Retrieve an invoice

 - [GET /invoices/{id}](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_retrieveinvoice.md): Retrieves a specific invoice by its unique identifier, including all invoice details, line items, and payment information.

## Pay an invoice

 - [PUT /invoices/{id}](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_payinvoice.md): Pays an invoice. This action will attempt to charge the customer using the payment method on file and finalize the invoice.

## Void an invoice

 - [DELETE /invoices/{id}](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_voidinvoice.md): Voids a draft or open invoice. A voided invoice cannot be paid and is marked as cancelled. This action is irreversible.

## List invoice transactions

 - [GET /invoices/{id}/transactions](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_gettransactions.md): Retrieves a paginated list of all transactions associated with a specific invoice, including payment attempts, refunds, and adjustments.

## Retrieve invoice transaction

 - [GET /invoices/{id}/transactions/{transactionId}](https://chaching.redocly.app/developer-guide/api/invoices/invoicescontroller_gettransaction.md): Retrieves detailed information about a specific transaction associated with an invoice.

