Skip to content

Commit 1604615

Browse files
author
fwmone
committed
## [0.1.6] - 2026-03-15
### Changed - URL of API seems to have changed to api.paperlesspaper.de
1 parent 13daf44 commit 1604615

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [0.1.6] - 2026-03-15
9+
10+
### Changed
11+
- URL of API seems to have changed to api.paperlesspaper.de
12+
813
## [0.1.5] - 2026-03-01
914

1015
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ After creating the API key, stay logged in the [web application](https://web.wir
8989

9090
If you're familiar with cURL and JSON, do this:
9191

92-
1. Retrieve your organization id: ```curl https://api.memo.wirewire.de/v1/organizations/ -H "x-api-key: YOUR_API_KEY"```.
93-
2. Retrieve your device id and paper id: ```curl https://api.memo.wirewire.de/v1/devices?organization=YOUR_ORGANIZATION_ID -H "x-api-key: YOUR_API_KEY"```. The result contains the keys "id" which is YOUR_DEVICE_ID (do *not* use "deviceId") and "paper" which is YOUR_PAPER_ID.
92+
1. Retrieve your organization id: ```curl https://api.paperlesspaper.de/v1/organizations/ -H "x-api-key: YOUR_API_KEY"```.
93+
2. Retrieve your device id and paper id: ```curl https://api.paperlesspaper.de/v1/devices?organization=YOUR_ORGANIZATION_ID -H "x-api-key: YOUR_API_KEY"```. The result contains the keys "id" which is YOUR_DEVICE_ID (do *not* use "deviceId") and "paper" which is YOUR_PAPER_ID.
9494

9595
## configuration.yaml
9696

@@ -105,7 +105,7 @@ paperlesspaper_push:
105105
device_id: "YOUR_DEVICE_ID"
106106

107107
# optional:
108-
base_url: https://api.memo.wirewire.de/v1
108+
base_url: https://api.paperlesspaper.de/v1
109109
input_dir: /media/picture-frames/paperlesspaper
110110
publish_dir: /config/www/picture-frames/paperlesspaper
111111
timeout: 30
@@ -380,7 +380,7 @@ column_span: 2
380380
The upload is performed using a multipart form-data request similar to:
381381
382382
```bash
383-
curl -X POST "https://api.memo.wirewire.de/v1/papers/uploadSingleImage/<PAPER_ID>" \
383+
curl -X POST "https://api.paperlesspaper.de/v1/papers/uploadSingleImage/<PAPER_ID>" \
384384
-H "x-api-key: <API_KEY>" \
385385
-F "picture=@/path/to/image.png;type=image/png"
386386
```

custom_components/paperlesspaper_push/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
CONF_DEVICE_ID = "device_id"
1212
CONF_SCAN_INTERVAL = "scan_interval"
1313

14-
DEFAULT_BASE_URL = "https://api.memo.wirewire.de/v1"
14+
DEFAULT_BASE_URL = "https://api.paperlesspaper.de/v1"
1515
DEFAULT_INPUT_DIR = "/media/picture-frames/paperlesspaper"
1616
DEFAULT_PUBLISH_DIR = "/config/www/picture-frames/paperlesspaper"
1717
DEFAULT_TIMEOUT = 30

custom_components/paperlesspaper_push/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"domain": "paperlesspaper_push",
33
"name": "paperlesspaper Push",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"documentation": "https://github.com/fwmone/paperlesspaper_push",
66
"issue_tracker": "https://github.com/fwmone/paperlesspaper_push/issues",
77
"requirements": [],

0 commit comments

Comments
 (0)