I would like to make a custom reports about average time between first two activities in deal for given period of time (week, month, quarter) and looking for best way to achieve that having in mind speed of response and amount of requests. Some ideas? It should return all kind of deals, not only open and won.
I’ve try to get it by
/deals/timeline with period, filter_id and field_key named ‘add_time’
then for every deal I ask for /deals/{id}/flow and looking for activities or /deals/{id}/activities
But I wondering if there is fastest way to get this. Grateful for any tips
Hi @dani
thanks for response. Your solution gives me deals from certain periods like month or a day and this is not good for my report. I’ve ended up with three filters (with periods: last week, last month, last quarter) and call to /deals with filter_id pointed to those filters. And then do the /deals/{id}/activities call. So it takes 2 calls also just like in your solution. I don’t see better ways like yours and mine.