Get Invoices
data class GetInvoices(val perPage: Int? = null, val page: Int? = null, val customer: String? = null, val account: String? = null, val status: InvoiceStatus? = null) : InvoiceEndpoints
Endpoint for retrieving a paginated, optionally filtered list of invoices (GET /v1/invoices).
Constructors
Link copied to clipboard
constructor(perPage: Int? = null, page: Int? = null, customer: String? = null, account: String? = null, status: InvoiceStatus? = null)
Properties
Link copied to clipboard
The URL path for this endpoint.
Link copied to clipboard
The HTTP method for this endpoint.
Link copied to clipboard
The query parameters to append to the request URL, or null if none apply.
Link copied to clipboard
The InvoiceStatus to filter results by.