Sends a mail to a given email address to login this user. This function makes life a bit easier in order to not having to deal with private key protection on the user side as a shared key is used to sign transactions onbehalf of a particular account. However viewing consensus information (balances) are public and might move from account to account without prior notification. Best practice for third party uses is to always start a session with the login RESP call and only create a user in case the response indicates an unregistered status.
643 matches
26 actions
Corrently.io
26 actions
- Allows to collect data with several requests (or a single) for a receipt.POSTv1.0.0
- BalancesGETv1.0.0
- Create a receipt for an energy delivery (only valid in Germany).POSTv1.0.0
- Dispatch (Green Energy Distribution Schedule)GETv1.0.0
- Energy Tariff informationGETv1.0.0
- Energy Tariff price componentsGETv1.0.0
- Finishs a collection of data and finalizes receipt. Use this method after collecting all data via quittung/preparePOSTv1.0.0
- Get best hour (with most regional green energy) in a given timeframe.GETv1.0.0
- Last Session InfoGETv1.0.0
- Login (via Mail)POSTv1.0.0
- MarketdataGETv1.0.0
- Meter ReadingGETv1.0.0
- Meter ReadingPOSTv1.0.0
- PredictionGETv1.0.0
- Prepare TransactionPOSTv1.0.0
- Public shared smart meters installed in Germany and available for subservices and exploration.GETv1.0.0
- Public shared smart meters installed in Germany and available for subservices and exploration.GETv1.0.0
- Public shared smart meters installed in Germany and available for subservices and exploration.GETv1.0.0
- Register (new Stromkonto)POSTv1.0.0
- Retrieve TSE (Technische Sicherheitseinrichtung) Data for a given receipt (Strom-Quittung).POSTv1.0.0
- Retrieve TSE (Technische Sicherheitseinrichtung) raw data only for a given receipt (Strom-Quittung).POSTv1.0.0
- Retrieve TSE (Technische Sicherheitseinrichtung) Signature only for a given receipt (Strom-Quittung).POSTv1.0.0
- Retrieve Zugferd XML for a given receipt (Strom-Quittung).GETv1.0.0
- Returns lastSession info for all easee wallboxes (chargers) given user has access to.GETv1.0.0
- Selectable Choices for customerGETv1.0.0
- WiM Proess InformtionGETv1.0.0
Other/Corrently.io
Login (via Mail)
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
{
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Registration status of a user. In case unregistered gets returned use the `register` endpoint to (re-)register.",
"enum": [
"registered",
"unregistered"
]
}
}
}