I have issue with SCIM connector, while aggregating Accounts and groups I am only getting 50 accounts and 50 groups. Which Setting should I check or change?
scim service response
scim service response
Try to change this value in debug page and check whether are you using partation:
<entry key="pageSize" value="50"/>
Hi Sandeep,
I’ve added pageSize attribute and all records has been aggregated, could it be possible to aggregate all records without adding pageSize attribute.
Hey! @Mandar45
It sounds like your SCIM connector is hitting a pagination limit. The issue is likely related to the itemsPerPage setting in the SCIM response. If it’s set to 50, the connector will only retrieve 50 accounts and 50 groups per request—even if more are available.
Here’s what you can check:
Pagination Support: Confirm whether your SCIM client supports pagination and is configured to iterate through all pages.
itemsPerPage Value: See if you can increase this value to fetch more records per request (e.g., 100 or 200), depending on what your SCIM provider allows.
startIndex and totalResults: Make sure your connector is handling these correctly to retrieve all pages.
Also, it might be worth checking with your application team to confirm how pagination is handled in the connector logic and whether any limits are enforced on the client side.
@Mandar45 Thanks for the update! Great to hear that adding the pageSize attribute resolved the issue and all records are now aggregating.
To your question—yes, it is technically possible to aggregate all records without explicitly setting pageSize, but it depends on how the SCIM provider and the connector are configured. Some SCIM endpoints have a default itemsPerPage value (often 50 or 100), and if the client doesn’t specify pageSize, it will use that default.
You might want to check with the application team to see:
If the connector has a default limit hardcoded.
Whether it supports automatic pagination (i.e., fetching all pages until totalResults is reached).
If there’s a configuration option to override or disable the default limit.
Thank you for your response Shaikh, I’m Validating with the client.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.