provider Products GET /products/{id}/deals
@utdk/pipedrive /products/{id}/deals
Get deals where a product is attached to
Returns data about deals that have a product attached to it.
id path required
The ID of the product
integer
start query
Pagination start
integer
limit query
Items shown per page
integer
status query
Only fetch deals with a specific status. If omitted, all not deleted deals are returned. If set to deleted, deals that have been deleted up to 30 days ago will be included.
enum: open, won, lost, deleted…

Try it

Authentication
Configure credentials for Pipedrive API v1
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

getproductdeals
GET/products/{id}/deals
Returns data about deals that have a product attached to it.

Parameters

required

The ID of the product

Pagination start

Items shown per page

Only fetch deals with a specific status. If omitted, all not deleted deals are returned. If set to deleted, deals that have been deleted up to 30 days ago will be included.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import pipedrive from '@utdk/pipedrive';

await pipedrive.getproductdeals({
  "start": 0,
  "status": "all_not_deleted"
})