provider Stages GET /stages/{id}/deals
@utdk/pipedrive /stages/{id}/deals
Get deals in a stage
Lists deals in a specific stage. If no parameters are provided open deals owned by the authorized user will be returned. <br>This endpoint has been deprecated. Please use <a href="https://developers.pipedrive.com/docs/api/v1/Deals#getDeals" target="_blank" rel="noopener noreferrer">GET /api/v2/deals?stage_id={id}</a> instead.
id path required
The ID of the stage
integer
filter_id query
If supplied, only deals matching the given filter will be returned
integer
user_id query
If supplied, `filter_id` will not be considered and only deals owned by the given user will be returned. If omitted, deals owned by the authorized user will be returned.
integer
everyone query
If supplied, `filter_id` and `user_id` will not be considered – instead, deals owned by everyone will be returned
enum: 0, 1
start query
Pagination start
integer
limit query
Items shown per page
integer

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.

getstagedeals
GET/stages/{id}/deals
Lists deals in a specific stage. If no parameters are provided open deals owned by the authorized user will be returned. <br>This endpoint has been deprecated. Please use <a href="https://developers.pipedrive.com/docs/api/v1/Deals#getDeals" target="_blank" rel="noopener noreferrer">GET /api/v2/deals?stage_id={id}</a> instead.

Parameters

required

The ID of the stage

If supplied, only deals matching the given filter will be returned

If supplied, `filter_id` will not be considered and only deals owned by the given user will be returned. If omitted, deals owned by the authorized user will be returned.

If supplied, `filter_id` and `user_id` will not be considered – instead, deals owned by everyone will be returned

Pagination start

Items shown per page

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.getstagedeals({
  "start": 0
})