List wallet transactions

List all the transactions associated with a particular Moov wallet.

To use this endpoint from the browser, you’ll need to specify the /accounts/{accountID}/wallets.read scope when generating a token.
GET
/accounts/{accountID}/wallets/{walletID}/transactions
200 404 429
Transactions associated with the wallet.
[
  {
    "availableBalance": 1204,
    "availableBalanceDecimal": "12.987654321",
    "completedOn": "2019-08-24T14:15:22Z",
    "createdOn": "2019-08-24T14:15:22Z",
    "currency": "USD",
    "fee": 500,
    "feeDecimal": "12.987654321",
    "grossAmount": 1200,
    "grossAmountDecimal": "12.987654321",
    "memo": "string",
    "netAmount": 700,
    "netAmountDecimal": "12.987654321",
    "sourceID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
    "sourceType": "transfer",
    "status": "pending",
    "transactionID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
    "transactionType": "account-funding",
    "walletID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43"
  }
]
Empty response for unauthorized or any other returned http status code.
Request was refused due to rate limiting.

X-Retry-In

string <duration>
How long (in milliseconds) to wait until able to retry the request.

Path parameters

accountID

string <uuid> required
ID of the account.

walletID

string <uuid> required
ID of the wallet

Query parameters

transactionType

string
Optional parameter to filter by transaction type.

sourceType

string
Optional parameter to filter by source type (i.e. transfer, dispute, issuing-transaction).

sourceID

string
Optional parameter to filter by source ID.

status

string
Optional parameter to filter by status (pending or completed).

count

integer
Optional parameter to limit the number of results in the query.
Default: 200

skip

integer
The number of items to offset before starting to collect the result set.

createdStartDateTime

string <RFC-3339>
Optional date-time which inclusively filters all transactions created after this date-time.

createdEndDateTime

string <RFC-3339>
Optional date-time which exclusively filters all transactions created before this date-time.

completedStartDateTime

string <RFC-3339>
Optional date-time which inclusively filters all transactions completed after this date-time.

completedEndDateTime

string <RFC-3339>
Optional date-time which exclusively filters all transactions completed before this date-time.

Response

application/json

availableBalance

integer<int64>
The wallet’s total available balance after recording a completed transaction. The value is in the smallest unit of the specified currency. In USD this is cents, so $12.04 is 1204 and $0.99 would be 99.

availableBalanceDecimal

string Pattern
The wallet’s total available balance after recording a completed transaction. Same as availableBalance, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521.

completedOn

string<date-time> <=24 characters

createdOn

string<date-time> <=24 characters

currency

string <=3 characters Pattern
A 3-letter ISO 4217 currency code.

fee

integer<int64>
Total fees paid for the transaction. The value is in the smallest unit of the specified currency. In USD this is cents, so $12.04 is 1204 and $0.99 would be 99.

feeDecimal

string Pattern
Total fees paid for the transaction. Same as fee, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521.

grossAmount

integer<int64>
The total transaction amount. The amount is in the smallest unit of the specified currency. In USD this is cents, so $12.04 is 1204 and $0.99 would be 99.

grossAmountDecimal

string Pattern
The total transaction amount. Same as grossAmount, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521.

memo

string
Detailed description of the transaction.

netAmount

integer<int64>
Net amount is the gross amount less fees paid, and the amount that affects the wallet’s balance. The amount is in the smallest unit of the specified currency. In USD this is cents, so $12.04 is 1204 and $0.99 would be 99.

netAmountDecimal

string Pattern
Net amount is the gross amount less fees paid, and the amount that affects the wallet’s balance. Same as netAmount, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521.

sourceID

string<uuid> <=36 characters Pattern
The ID of the Moov object to which this transaction is related.

sourceType

string<enum>
Wallet transaction source type.
Possible values: transfer, dispute, issuing-transaction

status

string<enum>
Wallet transaction status.
Possible values: pending, completed, canceled, failed

transactionID

string<uuid> <=36 characters Pattern
UUID v4

transactionType

string<enum>
Wallet transaction type
Possible values: account-funding, ach-reversal, card-payment, card-decline, card-reversal, cash-out, dispute, dispute-reversal, facilitator-fee, issuing-refund, issuing-transaction, issuing-transaction-adjustment, issuing-auth-release, issuing-decline, moov-fee, payment, payout, refund, refund-failure, rtp-failure, top-up, wallet-transfer

walletID

string<uuid> <=36 characters Pattern
UUID v4