ClientTransactionsResponse
successboolean
Example:
truedata object
transactions object[]
Array [
iduuid
Unique ledger entry identifier.
entryTypestring
Type of ledger movement.
Possible values: [cash_in, invoice_allocation, credit, debit, adjustment, reversal]
descriptionstring
Human-readable description of the movement.
amountnumber
Amount of the movement. Positive for credits (cash_in), negative for debits.
currencystring
Currency code (e.g., ARS).
Example:
ARSinvoiceIduuidnullable
Associated invoice ID, if applicable.
paymentIduuidnullable
Associated payment ID, if applicable.
tempLinkIdintegernullable
Associated temporary payment link ID, if applicable.
sourceTypestring
High-level origin of the ledger movement.
Possible values: [payment_link, manual_deposit, other]
createdAtdate-time
When the ledger entry was recorded.
]
pagination object
pageintegerrequired
Current page number
Example:
1limitintegerrequired
Items per page
Example:
20totalintegerrequired
Total number of items
Example:
150totalPagesintegerrequired
Total number of pages
Example:
8timestampdate-time
ClientTransactionsResponse
{
"success": true,
"data": {
"transactions": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"entryType": "cash_in",
"description": "string",
"amount": 0,
"currency": "ARS",
"invoiceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"paymentId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tempLinkId": 0,
"sourceType": "payment_link",
"createdAt": "2024-07-29T15:51:28.071Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 150,
"totalPages": 8
}
},
"timestamp": "2024-07-29T15:51:28.071Z"
}