Control nicht gefunden (control-not-found)

Das Feld (Control) mit dem bei der HTTP-Abfrage übergebenen Identifizierer existiert nicht in der spezifizierten LivingApp. Dieser Fehler tritt auch auf, wenn beim Anlegen oder Ändern von Datensätzen ein Feld-Identifizierer verwendet wird, der in der LivingApp nicht existiert.

Beispiel:

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