Wallet Transactions

List wallet debit and credit transactions.

GET
/api/v1/wallet/transactions?page=1

Description

Returns paginated wallet transactions with invoice references. Response includes filters.status and filters.type for allowed filter values.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Query Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number (1-based). Default is 1.
limitnumberNoRecords per page. Default is 10. Max 100 on tickets, wallet, and shipping labels.
currency_codestringNoFilter by cost center currency.
statusstringNoAll, Credit, or Debit.
typestringNoTransaction type label (see filters.type in response).
searchstringNoSearch order number or invoice.

Response

FieldTypeDescription
successbooleanWhether the request succeeded.
messagestringHuman-readable status message.
dataarrayTransaction objects for the current page.
data[].idstringOpaque transaction ID.
data[].serial_numbernumberRow serial within the result set.
data[].order_idstringOpaque related order ID when applicable.
data[].order_numberstringRelated order number.
data[].transaction_typestringTransaction category (e.g. ITAD, Repair).
data[].statusstringCredit or Debit.
data[].amountstringFormatted amount with currency symbol.
data[].raw_amountnumberNumeric amount.
data[].currency_codestringCurrency code.
data[].currency_symbolstringCurrency symbol.
data[].invoice_numberstringRelated invoice number.
data[].transaction_datestringFormatted transaction date.
data[].created_atstringCreation timestamp (ISO 8601).
filtersobjectAllowed status and type filter values.
filters.statusarrayAllowed status filter values.
filters.typearrayAllowed type filter values.
current_pagenumberCurrent page number (1-based).
total_pagesnumberTotal number of pages.
totalnumberTotal matching records across all pages.
per_pagenumberPage size used for this response (matches limit).
fromnumber | null1-based index of the first record on this page. null when total is 0.
tonumber | null1-based index of the last record on this page. null when total is 0.

Related Endpoints

Did this page help you?