/api/invoices AuthListar Faturas
Retorna a lista paginada de faturas do usuário.
Query Parameters
page integer Número da página
limit integer Itens por página (máx: 100)
status string Filtrar por status: pending, paid, overdue, cancelled
Status Codes
200 Lista retornada com sucesso401 Não autenticado{
"data": [
{
"id": "507f1f77bcf86cd799439066",
"number": "INV-2026-0042",
"contactId": "507f1f77bcf86cd799439011",
"total": 7000.00,
"status": "pending",
"dueDate": "2026-06-07T00:00:00Z",
"createdAt": "2026-05-07T10:00:00Z"
}
],
"total": 28,
"page": 1,
"limit": 20
}