The Accounting Service REST API is available atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/microservices-patterns/ftgo-application/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:8085. It manages consumer financial accounts, which are created automatically when a new consumer registers. Accounts are identified by the same ID used in the Consumer Service. This API currently exposes a read endpoint for account lookup.
GET /accounts/
Retrieves an account record by its ID. TheaccountId corresponds to the consumer ID assigned by the Consumer Service when the consumer was created.
Path parameters
The ID of the account to retrieve. This matches the consumer ID from the Consumer Service.
Response
The unique identifier of the account, echoing the requested
accountId.Status codes
| Code | Meaning |
|---|---|
200 OK | Account found and returned. |
404 Not Found | No account exists with the given accountId. |