I am running into an issue with the following request response on Python SDK.
scheduleGroups = architectApi.get_architect_schedulegroups(page_size=100)
The Date fields values are coming back as below:
'date_created': datetime.datetime(2020, 9, 28, 8, 59, 59, 502000, tzinfo=tzutc()),
'date_modified': datetime.datetime(2023, 5, 24, 9, 38, 18, 972000, tzinfo=tzutc()),
This causes issues when trying to work with the JSON as the value is not encapsulated in quotes.
I'm also not sure why it shows the value as datetime.datetime, is this not supposed to be a text str value?
I am expecting the results to match the API Explorer results:
Any assistance and or clarity would be much appreciated.