Retrieve the complete activity history for a digital-money account. Results are sorted in descending chronological order (most recent activity first) so the latest transactions always appear at the top. Every deposit from a linked card, every outgoing transfer, and every incoming transfer is recorded as a separateDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Gianluca-X/DigitalMoney/llms.txt
Use this file to discover all available pages before exploring further.
Activity entry and returned in this list.
Endpoint
http://localhost:8085
Authentication
Pass a valid Bearer JWT in the
Authorization request header. The header is read directly by the controller — the gateway pre-validates it and the service layer may raise InvalidTokenException on a token that passes gateway validation but fails internal checks.Path Parameters
The numeric identifier of the account whose activity history is to be retrieved.
Response
Returns200 OK with a JSON array of ActivityOutDTO objects, ordered by date descending.
Response Fields
Auto-generated unique identifier for the activity record.
The account this activity entry belongs to.
The kind of activity. One of:
"deposit"— funds loaded from a linked card"transfer-out"— outgoing transfer to another account"transfer-in"— incoming transfer from another account
The monetary amount involved. Negative for
transfer-out entries.ISO-8601 timestamp of when the activity was recorded (e.g.
"2024-03-15T10:30:00").For transfers, the CVU of the counterpart account (sender or recipient). May be
null for deposit entries.Example Request
Example Response
Error Responses
| Status | Exception | Condition |
|---|---|---|
400 Bad Request | IllegalArgumentException | The request is malformed (e.g. non-numeric accountId). |
403 Forbidden | InvalidTokenException | The provided token is invalid or has been tampered with. |
404 Not Found | ResourceNotFoundException | No account exists with the given accountId. |
