Need to get progress report of deal by stages how can i get using API?

Hi,

Need to help get progress report of deal by stages

I have read the documentation of Pipedrive API, Not found any solution there so could you help.

so can you help me to get data like this (attached screenshot)

I will be waiting for your response.

Thanks

Hi @gopal_mavani

You could create similar report by performing multiple requests + small amount of programming.

Step 1. Get all stages GET /stages
Step 2 (repeat for every stage). Get deals summary by stage GET /deals/summary?stage_id=<stage_id> . It includes total value and number of deals in that stage.

https://developers.pipedrive.com/docs/api/v1/#!/Stages/get_stages
https://developers.pipedrive.com/docs/api/v1/#!/Deals/get_deals_summary

1 Like