action corrently_quittung_tse { label: "Retrieve TSE (Technische Sicherheitseinrichtung) Data for a given receipt (Strom-Quittung)." description: "Allows to retrieve all relevant data assiciated to a TSE service call. E.q. Input parameters, public key and signature.\n" provider: corrently method: POST path: "/quittung/tse" encoding: json input: { type: "object" properties: { account: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { data: { description: "JSON object that got signed by TSE." type: "object" } publickey: { type: "string" description: "Public Key of TSE" } raw: { type: "string" description: "Datastring of JSON Object as it got used to create signature." } signature: { type: "string" description: "Resulting signature by signing raw datastring using private key of TSE." } } } }