Fetch the complete details of a single activity entry. The service queries by bothDocumentation 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.
accountId and activityId in combination, so an activity that exists under a different account will not be returned — the response will be 404 Not Found. This endpoint is typically used to populate a transaction detail screen or to gather data before generating a receipt.
Endpoint
http://localhost:8085
Authentication
Include a valid Bearer JWT in the
Authorization header. The controller reads the token from the header and the service layer validates access. Missing or invalid tokens result in 403 Forbidden.Path Parameters
The numeric identifier of the account that owns the activity record.
The numeric identifier of the specific activity entry to retrieve.
Response
Returns200 OK with a single ActivityOutDTO object.
Response Fields
Unique identifier for this activity record.
The account this activity belongs to.
Activity type:
"deposit", "transfer-out", or "transfer-in".Monetary value of the activity. Negative for outgoing transfers.
ISO-8601 timestamp when the activity was created (e.g.
"2024-03-15T14:22:05").CVU of the counterpart account for transfers, or
null for deposit entries.Example Request
Example Response
Error Responses
| Status | Exception | Condition |
|---|---|---|
400 Bad Request | IllegalArgumentException | Path variables are not valid long integers or the request is otherwise malformed. |
403 Forbidden | InvalidTokenException | The token is invalid or the authenticated user does not have permission to view this activity. |
404 Not Found | ResourceNotFoundException | No activity with activityId exists under accountId. |
