Skip to main content
Question

SCIM API Users endpoint — unable to retrieve users beyond 10,000 results

  • May 12, 2026
  • 3 replies
  • 60 views

Forum|alt.badge.img+1

Hi team,

We are integrating with the Lucid SCIM API (GET /scim/v2/Users) to collect enterprise user data. We've noticed that the API appears to have a server-side pagination limit of 10,000 records — any request with a startIndex greater than 10,000 returns an empty result set (totalResults: 0Resources: []), even when the totalResults field in earlier responses.


Questions:
 

  1. Is there a confirmed server-side limit on for the SCIM Users endpoint? If so, what is it?
  2. Is there an alternative pagination mechanism that would allow us to retrieve all users beyond 10,000?

Comments

Michael B
Forum|alt.badge.img+4
  • Lucid product team
  • May 12, 2026

Hello Ahegde,

 

When a `filter` is applied, it can cause the effect you are seeing. Our filtering mechanism has an internal limit that causes this to happen. Will you check if you have a filter and if so can you query beyond 10k?  

If that is the cause, try reworking your filters such that the result will never be greater than 10k. You may have to query over multiple different filters to get everything you are looking for.


Forum|alt.badge.img+1
  • Author
  • May 13, 2026

@Michael B Thanks for the response, we do indeed have the filter appiled!


Michael B
Forum|alt.badge.img+4
  • Lucid product team
  • May 13, 2026

Excellent. I am updating the documentation now to include that requests with filters are limited to 10k users.