1.3 KiB
title, description, ha_category, ha_iot_class, ha_release, ha_domain, ha_codeowners
title | description | ha_category | ha_iot_class | ha_release | ha_domain | ha_codeowners | ||
---|---|---|---|---|---|---|---|---|
Nextcloud | Instructions on how to integrate Nextcloud monitor api data into Home Assistant. |
|
Cloud Polling | 0.108 | nextcloud |
|
The nextcloud
integration pulls summary Nextcloud information into Home Assistant.
Configuration
This integration requires access to the monitor API of a Nextcloud instance (This is generally an admin user).
You should also generate an App password from the Nextcloud web UI: Settings > Security > Devices & sessions > Create new app password.
Once you have generated the App password, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
nextcloud:
url: Https://YOUR_NEXTCLOUD_URL
username: YOUR_USERNAME
password: YOUR_APP_PASSWORD
{% configuration %} url: description: The full URL to your Nextcloud instance. required: true type: string username: description: The username of a Nextcloud user that has access to the Nextcloud monitor API. required: true type: string password: description: The app password generated from the Nextcloud security settings page. required: true type: string {% endconfiguration %}