cURL
curl --request GET \ --url https://dev.exante.app/api/organization/{organization_uid}/invoices/stats \ --header 'Authorization: Bearer <token>'
{ "status": "success", "status_code": 200, "message": "Success", "data": { "amountTotals": { "draft": 123, "approved": 123, "scheduled": 123, "sent": 123, "overdue": 123, "paid": 123, "disputed": 123, "partially_paid": 123, "void": 123, "cancelled": 123 }, "countTotals": { "draft": 123, "approved": 123, "scheduled": 123, "sent": 123, "overdue": 123, "paid": 123, "disputed": 123, "partially_paid": 123, "void": 123, "cancelled": 123 } } }
Returns unfiltered invoice amount totals and invoice counts grouped by status for one organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization UID
Invoice statistics
"success"
200
"Success"
Show child attributes