Victor Vostrikov fdf8601cf6 Added config for multiple accounts - N26 (#9577)
* Added config for multiple accounts

* ✏️ Tweak
2019-07-13 15:12:46 +02:00

1.3 KiB

title, description, logo, ha_category, ha_release, ha_iot_class
title description logo ha_category ha_release ha_iot_class
N26 Instructions on how to integrate N26 integration within Home Assistant. n26.png
Finance
Sensor
Switch
0.92 Cloud Polling

The N26 integration for Home Assistant allows you to track your N26 account.

N26 is a bank from germany that launched as a start up. It is an "online only" bank in that it has no local "stores" to retrieve or deposit money and account management is done only through their web interface and mobile apps. The sensor allows to show account info including balance, spaces (sub-accounts within an account) and bank card status. The switch allows to change the "Blocked/Unblocked" status of an N26 bank card.

Configuration

Add the following entry to the configuration.yaml file:

# Example configuration.yaml entry
n26:
  username: YOUR_EMAIL
  password: YOUR_PASSWORD

It is possible to add more than one account:

# Example configuration.yaml entry
n26:
  - username: YOUR_EMAIL1
    password: YOUR_PASSWORD1
  - username: YOUR_EMAIL2
    password: YOUR_PASSWORD2   

{% configuration %} username: description: The account username. required: true type: string password: description: The account password. required: true type: string {% endconfiguration %}