Bill
Get a bill
Returns a single bill by id, including its charges_with_descriptions breakdown.
Company users may only read bills for companies they belong to; requesting a bill outside that scope returns 404 Not Found.
get/v1/bills/{id}
Path parameters
idstring uuid required
The UUID of the bill.
Parameters
#/paths/~1v1~1bills/get/parameters/0 — unresolved $ref
Response
The requested bill.
Example response
{
"month": 6,
"year": 2024,
"status": "issued",
"total_amount": 119000,
"charges_with_descriptions": [
{
"amount": 100000,
"description": "Comisión transferencias"
}
]
}