Datensatz nicht änderbar (record-not-writeable)

Der bei der HTTP-Abfrage übergebene Datensatz existiert zwar, aber Sie haben nicht die nötigen Rechte, um ihn zu ändern.

Beispiel:

>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.put(
...     "https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/records/680a25dac1aa1f8b0f5e1234",
...     headers={
...         "Accept": "application/json",
...         "X-API-KEY": api_key,
...     },
...     json={
...         "fields": {
...             "vorname": "Otto",
...         },
...     },
... )
>>> pprint.pprint(response.json())
{'app_id': '680a23234731c68fdf429d23',
 'detail': "You don't have permission to write the record "
           '`680a25dac1aa1f8b0f5e1234` in the LivingApp '
           '`680a23234731c68fdf429d23`.',
 'record_id': '680a25dac1aa1f8b0f5e1234',
 'status': 403,
 'title': 'Record not writeable',
 'type': 'https://my.living-apps.de/docs/REST-Service_error_record_not_writeable.html'}