action corrently_metering_get { label: "Meter Reading" description: "Retrieves a metered reading using account (Stromkonto).\n" provider: corrently method: GET path: "/metering/reading" encoding: json input: { type: "object" properties: { account: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { "1.8.0": { type: "integer" description: "Reading as provided as input in Wh" } "1.8.1": { type: "integer" description: "Green energy calculated using Green Power Index (GrünstromIndex) in Wh" } "1.8.2": { type: "integer" description: "Grey energy calculated using Green Power Index (GrünstromIndex) in Wh" } _processingTime: { type: "integer" description: "Time this reading got imported into consensus (e.q. signed timestamp)." } account: { type: "string" description: "Stromkonto/Metering address allocated (this is not the MELOID!)" } co2_g_oekostrom: { type: "integer" description: "CO2 Emission of metered energy in a green energy mix (e.q. Ökostromtarif)" } co2_g_standard: { type: "integer" description: "CO2 Emission of metered energy in a standard mix" } credits: { description: "Update credits this meter has. Gets refilled automtically to prevent too frequent updates" type: "object" } timeStamp: { type: "integer" description: "API Consensus time this reading was fully received" } ttl: { type: "integer" description: "Time to Live for this reader. If no update is provided it gets decommissioned." } } } }