Datensatz nicht gefunden (record-not-found)

Der Datensatz mit der bei der HTTP-Abfrage übergebenen URL existiert nicht in der spezifizierten LivingApp (oder Sie haben in dieser LivingApp nur das Recht, die Ihnen zugewiesenen Datensätze zu sehen, und der spezifizierte Datensatz gehört nicht dazu).

Beispiel:

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