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
I encountered this situation when my Pipedrive organizations started exceeding 100 fields : the new ones would not be replicated.
The reason Pipedrive API fields endpoint have a limit of 100.
My workaround was to pass a higher limit when requesting the fields endpoints:
# In tap_pipedrive/streams/recents/dynamic_typing/__init__.pyfields_response=self.tap.execute_request(endpoint=self.fields_endpoint, params={'limit': 200})
A better solution would be to handle pagination but I do not know if it is worth it as this is quite a edge case.
The text was updated successfully, but these errors were encountered:
Hi all,
I encountered this situation when my Pipedrive organizations started exceeding 100 fields : the new ones would not be replicated.
The reason Pipedrive API fields endpoint have a limit of 100.
My workaround was to pass a higher limit when requesting the fields endpoints:
A better solution would be to handle pagination but I do not know if it is worth it as this is quite a edge case.
The text was updated successfully, but these errors were encountered: