Skip to main content

ClientTransactionsResponse

successboolean
Example: true
data 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: ARS
    invoiceIduuidnullable

    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: 1
    limitintegerrequired

    Items per page

    Example: 20
    totalintegerrequired

    Total number of items

    Example: 150
    totalPagesintegerrequired

    Total number of pages

    Example: 8
    timestampdate-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"
    }