From 1a05fd2158c680fec753a8927387ac3ffc36f7c9 Mon Sep 17 00:00:00 2001 From: AnamikaBE Date: Wed, 2 Sep 2026 18:09:08 +0530 Subject: [PATCH] V2BIRD-23149 survey deepPagination changes --- apiary.apib | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apiary.apib b/apiary.apib index 44d5e2a..a433b08 100644 --- a/apiary.apib +++ b/apiary.apib @@ -10927,6 +10927,8 @@ Post a survey response API submits the survey response for a particular survey u ## List Responses [/v1/survey/ext/list/responses/{survey_id}{?businessNumber,page,size,sortby,sorder,includeTicketId}] List Responses for a Survey API fetches all the responses available for a particular survey ID. +> __Note__ +> - _By default, Deep Pagination with record window (page x size) greater than 100k is not supported. Either reduce the page/size combination to be less than or equal to 100k, or pass `deepPagination: true` in the request body to fetch beyond this limit._ ### List Responses for a Survey [POST] @@ -10950,12 +10952,14 @@ List Responses for a Survey API fetches all the responses available for a partic + Attributes + startDate: "MM/dd/yyyy HH:mm:ss" (string, optional) - Start date. + endDate: "MM/dd/yyyy HH:mm:ss" (string, optional) - End date. + + deepPagination: false (boolean, optional) - Set to true to allow paging beyond the standard pagination limit (page x size greater than 100k). Default is false. + Body { "startDate" : "07/03/2018 06:30:00", - "endDate" : "07/23/2018 06:45:00" + "endDate" : "07/23/2018 06:45:00", + "deepPagination": true } @@ -21991,6 +21995,7 @@ Add Business Integration Mapping adds locations to integrations and set them act # Group Change Logs +* 09/02/2026 - Added `deepPagination` flag support in the List Responses for a Survey API to allow fetching survey responses beyond the standard 100k record pagination limit. * 07/03/2026 - Updated `mainBusinessDescription` and microsite `internalListing.description` fields in Create, Update and Get Listing APIs to be optional instead of required, with support for clearing the existing value by sending an empty string (V2BIRD-1690). * 06/10/2026 - Updated Get Contact API to support an optional `experienceScore` boolean field in the request body (default: false). When set to true, the response includes the customer's experience score and source. * 05/25/2026 - Added Update Custom card (PUT) and Delete Custom card (DELETE) API documentation under the Business profile custom card section.