Skip to main content

All Invoices

Returns all invoices. This endpoint allows you to return all invoices.

GET /api/v1/client/invoices

Query param

authorization : *bearer
REQUEST BODY SCHEMA: application/json


NameDescriptionRequiredType
limitNumber of items to return per page. Example: limt=50 Default: 100Not Requirednumber
pagePage number. Example: page=1 Default: 1Not Requirednumber
policyFilter invoices by policy's id. Example: policy=622afd13c94e5c2edfaa4674Not Requiredstring

Responses

CodeDescription
200List of all invoices of the company
409Unauthorized

Response Sample

Content type
application/json
[
{
"statusCode": 200,
"success": true,
"data": [
+ { ... }
],
"paginator": {
"itemsCount": 0,
"offset": 0,
"limit": 0,
"pageCount": 0,
"page": 0,
"pagingCounter": 0,
"hasPrevPage": true,
"hasNextPage": true,
"prevPage": 0,
"nextPage": 0
}
}
...
]