-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
I am having trouble updating a records.
For almost all record numbers this code cooperates but occasionally it yields a "Filemaker Error Code 101 - Record Is Missing":
server = fmrest.Server(url=self.url,
user=user_name,
password=some_password,
database='UCPPC',
layout='rfilog_raw_table',
api_version='v1')
server.login()
server.edit_record(record_id=20818, field_data={'Answer': 'blah blah blah', 'Answer Date': '11/07/2021'})
...despite the fact that doing this gets the records object as expected:
server = fmrest.Server(url=self.url,
user=user_name,
password=some_password,
database='UCPPC',
layout='rfilog_raw_table',
api_version='v1')
server.login()
rec = server.get(20818)
...but then I am unaware of how one might update the record object for fields/attributes that cannot be attributes (eg 'Answer Date' field.)
This is for Filemaker Server 19.
The python code is Python 3.9.11 on Windows 10.
python-fmrest Ver 1.6.0
Any thoughts on resolving this would be appreciated.
Metadata
Metadata
Assignees
Labels
No labels