Datensatz nicht lesbar (record-not-readable)
Der bei der HTTP-Abfrage übergebene Datensatz existiert zwar, aber Sie haben nicht die nötigen Rechte, um ihn zu lesen.
Beispiel:
>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.get(
... "https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/records/680a25dac1aa1f8b0f5e1234",
... headers={
... "Accept": "application/json",
... "X-API-KEY": api_key,
... },
... )
>>> pprint.pprint(response.json())
{'app_id': '680a23234731c68fdf429d23',
'detail': "You don't have permission to read the record "
'`680a25dac1aa1f8b0f5e1234` in the LivingApp '
'`680a23234731c68fdf429d23`.',
'record_id': '680a25dac1aa1f8b0f5e1234',
'status': 403,
'title': 'Record not readable',
'type': 'https://my.living-apps.de/docs/REST-Service_error_record_not_readable.html'}