You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Business Central API seems to return different datetime format for the cursor field: %Y-%m-%dT%H:%M:%S.%fZ and %Y-%m-%dT%H:%M:%SZ. This means that configuring an incremental sync is not possible for this API.
Proposed solution
Allow for multiple datetime formats. If multiple datetime_format are provided, start_datetime and end_datetime needs to define a datetime_format
cursor_datetime_format should be in order so that if the connector dev knows that one is more frequent than the other, he can defined it first and this will be more performant
to avoid breaking changes, if cursor_datetime_format is not defined, use datetime_format
What area the feature impact?
Connectors
Revelant Information
Business Central API seems to return different datetime format for the cursor field:
%Y-%m-%dT%H:%M:%S.%fZ
and%Y-%m-%dT%H:%M:%SZ
. This means that configuring an incremental sync is not possible for this API.Proposed solution
Allow for multiple datetime formats. If multiple
datetime_format
are provided,start_datetime
andend_datetime
needs to define a datetime_formatDependency
If we allow datetime_format to be a list, it doesn't align with #27153. Possible solutions:
cursor_datetime_format
can be a list and notdatetime_format
outgoing_datetime_format
instead ofcursor_datetime_format
and keepdatetime_format
for the cursorThe text was updated successfully, but these errors were encountered: