• Raghuram Kokalla
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
I want to retrieve all the users on Salesforce through SCIM API, at present when we try to fetch more user than 2200
( URL = .....&startIndex=2201&count=200 ) the target throws the exception as below
                     {
                       "Errors": [
                                         {
                                           "description": "Start index too big. Consider filtering down your result set, e.g. id gt \"(the last id in the result set)\"",
                                           "code": 400
                                         }
                                       ]
                    }
                   I need to enquire if there is any way to fetch more number of users without using filters in SCIM.