App-Parameter nicht gefunden (app-parameter-not-found)

Der App-Parameter mit dem bei der HTTP-Abfrage übergebenen Pfad existiert nicht in der spezifizierten LivingApp (oder App-Gruppe).

Beispiel:

>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.get(
...     "https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/params/falsch",
...     headers={
...         "Accept": "application/json",
...         "X-API-KEY": api_key,
...     },
... )
>>> pprint.pprint(response.json())
{'detail': 'The app parameter '
           '`https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/params/falsch` '
           'does not exist.',
 'status': 404,
 'title': 'App parameter not found',
 'type': 'https://my.living-apps.de/docs/REST-Service_error_app_parameter_not_found.html',
 'url': 'https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/params/falsch'}