v1
latestOpenAPI 3.0.02026-07-2422987517.5 KBList bills
Returns a paginated list of the company's bills ("boletas/facturas de Cardda"): the monthly billing documents that aggregate Cardda's commission charges.
Scope
Company users only see bills for companies they are a member of (via their company memberships). Cardda staff see all bills.
Filtering, sorting, pagination
Supports the standard list controls: _start/_end for pagination, _field/_order for sorting, and per-field filters. A filter value can be a plain value (exact match) or a JSON string with an operator, e.g. status={"$in":["issued","preissued"]}.
Response
Each bill includes charges_with_descriptions, a human-readable breakdown of the per-product charges.
Query parameters
If all the transactions where in an array, this would represent the index of the first item returned in the response
If all the transactions where in an array, this would represent the index of the last item returned in the response
The order method, which can be ascending or descending
The field used to sort, the example illustrates a response that would be sorted by the creation date
Filter by company UUID. Supports {"$in":[...]} for batch lookups.
Filter by bill status (e.g. draft, preissued, issued).
Filter by billing month (1-12).
Filter by billing year.
Headers
UUID of the company on whose behalf the request is made. Required for every Finance endpoint. See The company-id header for details on how to obtain a value for this header and the error responses to expect when it is missing or invalid.
Response
Paginated list of bills.
Example response
[
{
"month": 6,
"year": 2024,
"status": "issued",
"total_amount": 119000,
"charges_with_descriptions": [
{
"amount": 100000,
"description": "Comisión transferencias"
}
]
}
]