- GET /monitoring/balances#
Get a list of balances stored by the auditor.
The following query parameters are optional, and can be used to customise the response:
Request:
- Query Parameters:
balance_key – a string identifying a balance. If specified, only returns the balance with this exact key. The default value is NULL.
Response:
- 200 OK:
The auditor responds with a top level array of Balances objects. If no elements could be found, an empty array is returned
Details:
interface Balances { // String identifying a balance balance_key : string; // Amount of the balance balance_value : Amount; }