action corrently_stromkonto_balances { label: "Balances" description: "Stromkonto represents a core component of the Corrently Ecosystem. It is a ledger for green energy related transactions and gets heavily used by the public Web-UI on www.stromkonto.net . Beside of some decoration and reformating operations all data is backed by the [Energychain blockchain](https://github.com/energychain/) to provide consensus of balances and transactions. Use this API Endppoint if you prefere not to work with low level Distributed Ledger Technology (Blockchain).\n" provider: corrently method: GET path: "/stromkonto/balances" encoding: json input: { type: "object" properties: { account: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { balance: { type: "integer" description: "Sum owned - sum due by account" } haben: { type: "integer" description: "Sum owned by account" } soll: { type: "integer" description: "Sum due by account" } txs: { type: "array" items: { type: "object" properties: { cashier: { type: "string" description: "Pretty print of counter signing party" } timeStamp: { type: "integer" description: "Cross signed timestamp of transaction" } txid: { type: "string" description: "Unique hash of this transaction as provided by counter signing party" } txtype: { type: "string" description: "Type of transaction per cashier implementation and schema" } value: { type: "integer" description: "Amount covered by transaction" } } } } variation: { type: "string" description: "Type of subbalance (sub account)" enum: ["gsb", "erzeugung", "eigenstrom", "co2", "baeume"] } } } } }