I need to list all the deals and their products using Pipedrive REST API. Anyone know how to do it?
Thanks in advance
I need to list all the deals and their products using Pipedrive REST API. Anyone know how to do it?
Thanks in advance
Copyright © 2021 Jogjafile Inc.
You can get all Deals with this call: GET /deals
After retrieving the response, you can iterate every Deal and call another API call: GET /deals/{id}/products
So a (pseudo-)code example could look something like this: