Invoices
Invoice summary
Get summary of invoices for the authenticated team.
get/invoices/summary
Query parameters
statusesstring[]
Filter summary by invoice statuses
Filter summary by invoice statuses
[ "draft", "unpaid" ]
Response
Summary of invoices for the authenticated team.
Example response
{
"currency": "USD",
"totalAmount": 224171.25,
"invoiceCount": 15,
"breakdown": [
{
"currency": "EUR",
"originalAmount": 15000.5,
"convertedAmount": 16250.75,
"count": 5
},
{
"currency": "GBP",
"originalAmount": 8000.25,
"convertedAmount": 9200.5,
"count": 3
}
]
}