While performing account aggregation we’re only getting 50 records i.e first page records and page size is 50
we don’t have any reference attributes for page number or page count or number of records or next or previous neither in response or nor in response headers of account aggregation
I tried pagination steps no luck as there no reference for count or page
Post last page we are getting [. ] As response
Is there any way to I have counter and append 50 per iteration and Hard stop at post last page i.e response → [. ]
Try these pagination steps. I have a Coupa WS connector in my environment and it works well with this pagination. This is assuming your baseUrl looks something like this: https://<ENVIRONMENT>.coupahost.com/api
These steps are not working for ws Saas connector moved conection from saas to va based ironically steps provided by @trettkowski , has worked for me but my question is why same paging steps are not working as expected in ws SaaS connector was it a bug on SailPoint Ws SaaS please any from SailPoint help we understand better why same paging steps are not working for ws SaaS
@amulpuru - you raise a really great question. We have seen that there are some differences in behavior between some of the SaaS and VA based connectors. It is not entirely clear as to why. Definitely a topic worth pursuing.
Hi @amulpuru one other thing you can try on the Saas Connector paging. This forces the limit in.
TERMINATE_IF $RECORDS_COUNT$ < $limit$ $offset$ = $offset$ + $limit$ $endpoint.fullUrl$ = $application.baseUrl$ + “/api/users?limit=” + $limit$ + “&offset=” + $offset$