Get a User's Wallet Activity
Get the money in-and-out history for a user’s primary wallet.
A user can hold several wallets per currency; this reads the one flagged
primary. Defaults to USD — pass ?currency= to select a different
currency’s primary.
You get back:
- Balances —
available(spendable now),outbound_pending(money leaving that hasn’t cleared),inbound_pending(money arriving that hasn’t cleared), andcurrent(the overall balance). - Activity list — one entry per payment, newest first. Each entry has a
short description of what happened, its status, the amount, whether it was
money in or money out (
amount_sign), and the date and time.
The user must belong to your platform. Returns 404 if the user has no primary wallet in the requested currency.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
The unique ID of the user whose wallet activity you want.
"b3a9b622-cc63-4d3c-aad6-2d8e29e6f9d4"
Query Parameters
ISO 4217 currency code of the primary wallet to read.
3Response
Successful Response
Standard response wrapper for single-object responses and errors.
Generic over the payload type. A route that declares
CommonResponse[SomeModel] gets the real data schema rendered in
OpenAPI/Swagger; a bare CommonResponse leaves data untyped.

