Listing deals with their products

209 Views Asked by At

I need to list all the deals and their products using Pipedrive REST API. Anyone know how to do it?

Thanks in advance

1

There are 1 best solutions below

0
On

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:

DEALS = GET /deals

for DEAL in DEALS
  DEAL_ID = DEAL.ID
  PRODUCTS = GET /deals/DEAL_ID/products