Anhang nicht gefunden (attachment-not-found)
Der Anhang mit der bei der HTTP-Abfrage übergebenen ID existiert nicht im spezifizierten Datensatz (oder ist für Sie nicht zugänglich).
Beispiel:
>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.get(
... "https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/records/000000000000000000000000/attachments/000000000000000000000000",
... headers={
... "Accept": "application/json",
... "X-API-KEY": api_key,
... },
... )
>>> pprint.pprint(response.json())
{'detail': 'The attachment '
'`https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/records/000000000000000000000000/attachments/000000000000000000000000` '
'does not exist.',
'status': 404,
'title': 'Attachment not found',
'type': 'https://my.living-apps.de/docs/REST-Service_error_attachment_not_found.html',
'url': 'https://my.living-apps.de/rest/apps/680a23234731c68fdf429d23/records/000000000000000000000000/attachments/000000000000000000000000'}