@@ -49,6 +49,7 @@ Retrieve all deals from Pipedrive with optional filters
4949| ` pipeline_id ` | string | No | If supplied, only deals in the specified pipeline are returned \( e.g., "1"\) |
5050| ` updated_since ` | string | No | If set, only deals updated after this time are returned. Format: 2025-01-01T10:20:00Z |
5151| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
52+ | ` cursor ` | string | No | For pagination, the marker representing the first item on the next page |
5253
5354#### Output
5455
@@ -74,6 +75,8 @@ Retrieve all deals from Pipedrive with optional filters
7475| ` metadata ` | object | Pagination metadata for the response |
7576| ↳ ` total_items ` | number | Total number of items |
7677| ↳ ` has_more ` | boolean | Whether more items are available |
78+ | ↳ ` next_cursor ` | string | Cursor for fetching the next page \( v2 endpoints\) |
79+ | ↳ ` next_start ` | number | Offset for fetching the next page \( v1 endpoints\) |
7780| ` success ` | boolean | Operation success status |
7881
7982### ` pipedrive_get_deal `
@@ -148,10 +151,9 @@ Retrieve files from Pipedrive with optional filters
148151
149152| Parameter | Type | Required | Description |
150153| --------- | ---- | -------- | ----------- |
151- | ` deal_id ` | string | No | Filter files by deal ID \( e.g., "123"\) |
152- | ` person_id ` | string | No | Filter files by person ID \( e.g., "456"\) |
153- | ` org_id ` | string | No | Filter files by organization ID \( e.g., "789"\) |
154- | ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
154+ | ` sort ` | string | No | Sort files by field \( supported: "id", "update_time"\) |
155+ | ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 100\) |
156+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return\) |
155157| ` downloadFiles ` | boolean | No | Download file contents into file outputs |
156158
157159#### Output
@@ -171,6 +173,8 @@ Retrieve files from Pipedrive with optional filters
171173| ↳ ` url ` | string | File download URL |
172174| ` downloadedFiles ` | file[ ] | Downloaded files from Pipedrive |
173175| ` total_items ` | number | Total number of files returned |
176+ | ` has_more ` | boolean | Whether more files are available |
177+ | ` next_start ` | number | Offset for fetching the next page |
174178| ` success ` | boolean | Operation success status |
175179
176180### ` pipedrive_get_mail_messages `
@@ -183,13 +187,16 @@ Retrieve mail threads from Pipedrive mailbox
183187| --------- | ---- | -------- | ----------- |
184188| ` folder ` | string | No | Filter by folder: inbox, drafts, sent, archive \( default: inbox\) |
185189| ` limit ` | string | No | Number of results to return \( e.g., "25", default: 50\) |
190+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return\) |
186191
187192#### Output
188193
189194| Parameter | Type | Description |
190195| --------- | ---- | ----------- |
191196| ` messages ` | array | Array of mail thread objects from Pipedrive mailbox |
192197| ` total_items ` | number | Total number of mail threads returned |
198+ | ` has_more ` | boolean | Whether more messages are available |
199+ | ` next_start ` | number | Offset for fetching the next page |
193200| ` success ` | boolean | Operation success status |
194201
195202### ` pipedrive_get_mail_thread `
@@ -221,7 +228,7 @@ Retrieve all pipelines from Pipedrive
221228| ` sort_by ` | string | No | Field to sort by: id, update_time, add_time \( default: id\) |
222229| ` sort_direction ` | string | No | Sorting direction: asc, desc \( default: asc\) |
223230| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
224- | ` cursor ` | string | No | For pagination, the marker representing the first item on the next page |
231+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return \) |
225232
226233#### Output
227234
@@ -237,6 +244,8 @@ Retrieve all pipelines from Pipedrive
237244| ↳ ` add_time ` | string | When the pipeline was created |
238245| ↳ ` update_time ` | string | When the pipeline was last updated |
239246| ` total_items ` | number | Total number of pipelines returned |
247+ | ` has_more ` | boolean | Whether more pipelines are available |
248+ | ` next_start ` | number | Offset for fetching the next page |
240249| ` success ` | boolean | Operation success status |
241250
242251### ` pipedrive_get_pipeline_deals `
@@ -249,8 +258,8 @@ Retrieve all deals in a specific pipeline
249258| --------- | ---- | -------- | ----------- |
250259| ` pipeline_id ` | string | Yes | The ID of the pipeline \( e.g., "1"\) |
251260| ` stage_id ` | string | No | Filter by specific stage within the pipeline \( e.g., "2"\) |
252- | ` status ` | string | No | Filter by deal status: open, won, lost |
253261| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
262+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return\) |
254263
255264#### Output
256265
@@ -271,6 +280,7 @@ Retrieve all projects or a specific project from Pipedrive
271280| ` project_id ` | string | No | Optional: ID of a specific project to retrieve \( e.g., "123"\) |
272281| ` status ` | string | No | Filter by project status: open, completed, deleted \( only for listing all\) |
273282| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500, only for listing all\) |
283+ | ` cursor ` | string | No | For pagination, the marker representing the first item on the next page |
274284
275285#### Output
276286
@@ -279,6 +289,8 @@ Retrieve all projects or a specific project from Pipedrive
279289| ` projects ` | array | Array of project objects \( when listing all\) |
280290| ` project ` | object | Single project object \( when project_id is provided\) |
281291| ` total_items ` | number | Total number of projects returned |
292+ | ` has_more ` | boolean | Whether more projects are available |
293+ | ` next_cursor ` | string | Cursor for fetching the next page |
282294| ` success ` | boolean | Operation success status |
283295
284296### ` pipedrive_create_project `
@@ -309,12 +321,11 @@ Retrieve activities (tasks) from Pipedrive with optional filters
309321
310322| Parameter | Type | Required | Description |
311323| --------- | ---- | -------- | ----------- |
312- | ` deal_id ` | string | No | Filter activities by deal ID \( e.g., "123"\) |
313- | ` person_id ` | string | No | Filter activities by person ID \( e.g., "456"\) |
314- | ` org_id ` | string | No | Filter activities by organization ID \( e.g., "789"\) |
324+ | ` user_id ` | string | No | Filter activities by user ID \( e.g., "123"\) |
315325| ` type ` | string | No | Filter by activity type \( call, meeting, task, deadline, email, lunch\) |
316326| ` done ` | string | No | Filter by completion status: 0 for not done, 1 for done |
317327| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
328+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return\) |
318329
319330#### Output
320331
@@ -335,6 +346,8 @@ Retrieve activities (tasks) from Pipedrive with optional filters
335346| ↳ ` add_time ` | string | When the activity was created |
336347| ↳ ` update_time ` | string | When the activity was last updated |
337348| ` total_items ` | number | Total number of activities returned |
349+ | ` has_more ` | boolean | Whether more activities are available |
350+ | ` next_start ` | number | Offset for fetching the next page |
338351| ` success ` | boolean | Operation success status |
339352
340353### ` pipedrive_create_activity `
@@ -399,6 +412,7 @@ Retrieve all leads or a specific lead from Pipedrive
399412| ` person_id ` | string | No | Filter by person ID \( e.g., "456"\) |
400413| ` organization_id ` | string | No | Filter by organization ID \( e.g., "789"\) |
401414| ` limit ` | string | No | Number of results to return \( e.g., "50", default: 100, max: 500\) |
415+ | ` start ` | string | No | Pagination start offset \( 0-based index of the first item to return\) |
402416
403417#### Output
404418
@@ -433,6 +447,8 @@ Retrieve all leads or a specific lead from Pipedrive
433447| ↳ ` add_time ` | string | When the lead was created \( ISO 8601\) |
434448| ↳ ` update_time ` | string | When the lead was last updated \( ISO 8601\) |
435449| ` total_items ` | number | Total number of leads returned |
450+ | ` has_more ` | boolean | Whether more leads are available |
451+ | ` next_start ` | number | Offset for fetching the next page |
436452| ` success ` | boolean | Operation success status |
437453
438454### ` pipedrive_create_lead `
0 commit comments