I need to get the summary on a GET request that brings the user_id related to the deals according to a filter (this filter is related to a start_date and end_date). However, the documentation says that
-
filter_id:
user_id
will not be considered. Only deals matching the given filter will be returned. -
user_id: Only deals matching the given user will be returned.
user_id
will not be considered if you usefilter_id
So, if I use any of them, one is exclude from it
What would be the best approach for that? I know I could put everything I need on a filter and bring it to my application. But as there are many users using pipedrive, I would have to create many filters for that.
Is there something I could do about?