How to do paging for PAM module connector in SailPoint IIQ

Which IIQ version are you inquiring about?

8.4

Share all details about your problem, including any error messages you may have received.

Hi @everyone, I am trying to integrate my CyberArk application with SailPoint IIQ using PAM module but when i am trying to run the group Aggregation (PrivilegedData) it is throwing error with limit should be in between 1 and 1000 after checking this with CyberArk support.

They are saying they we have to do indexing for max 1000 items per page since we have privileged items more than 11000.

Can someone please tell us what to do in this case or how we can do the paging for privileged items.

Even we have the same issue. We have close to around 5000 privileged Items from cyberArk. We are also using the OOTB PAM SCIM connector.

In your SailPoint application XML (CyberArk PAM connector), add or verify the following configuration:

<Attributes>
  <Map>
    <entry key="pageSize" value="1000"/>
    <entry key="enablePaging" value="true"/>
  </Map>
</Attributes>

This tells SailPoint to request data in chunks of 1000 items per page.

Then inspect logs for SCIM calls like:

GET /PrivilegedData?startIndex=1&count=1000
GET /PrivilegedData?startIndex=1001&count=1000
...

This confirms that SailPoint is iterating through pages correctly.

Dear @kannan_sb85 ,

I tried adding these entries in the application xml but it is not iterating through the pages and only aggregating 1000 entries that means only one page has been iterated. is there any other tag we need to add to do the paging automatically like we do for web services connector.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.