LivingApp unbekannt (unknown-app)
Die bei der HTTP-Abfrage gesendete LivingApp-ID ist ungültig.
Beispiel:
>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.get(
... "https://my.living-apps.de/rest/apps/000000000000000000000000",
... headers={
... "Accept": "application/json",
... "X-API-KEY": api_key,
... },
... )
>>> pprint.pprint(response.json())
{'app_id': '000000000000000000000000',
'detail': 'The LivingApp `000000000000000000000000` does not exist.',
'status': 404,
'title': 'LivingApp not found',
'type': 'https://my.living-apps.de/docs/REST-Service_error_unknown_app.html'}