Looking for some help. I’m experiencing issue with Webservice connector … it is pulling maximum of 200 users wherein application got 8k users. Tried putting below paging steps but aggregation getting timed-out as soon as I increase the count from 200.
Without paging steps, aggregation only pulling 50 accounts.
@NeetuDixit Please use like below , just double check url(full url), also no need to mention count in request end point as you are getting only 50 default. So just use like below it will resolve your issue:-
$limit$ = 50
TERMINATE_IF $RECORDS_COUNT$ < $limit$
$startIndex$ = $startIndex$ + $limit$
$endpoint.fullUrl$ = $application.baseUrl$ + “/scim/v2//Users?startIndex=” + $startIndex$
You may share next page result screenshot as well. to guide better because i see in this screenshot you’re not using params like limit and offset or startIndex.
Try below paging rule and let me know if there is any issue:
You need to identify the pagination attribute supported by the API. By default, it might be startIndex, but some APIs use their own formats, such as _pageIndex. Once you identified the pagination attributes of the API, you can use the above pagination tab steps as a base and modify them accordingly.
@NeetuDixit please share task result just want to check something…Also please let me know your base url and url u configure in get API in conifguration