Account aggregation operation in web service connector

Which IIQ version are you inquiring about?

IIQ8.3

I am having 78 accounts present in application and I want to explore the account aggregation operation in web service connector.
Aggregation should only returns 20 account & it should stop there and account aggregation should be success for 20 acc only.and rest 58 account should be deleted.

Note-We cant use customization rule. How can I achieve this in web service connector?

Hi @Shalaka_Gawande ,

To aggregate only 20 accounts during an account aggregation operation, first, check if the Web Service API supports pagination. If it does, modify the query parameters (such as limit=20) to ensure that only the first 20 accounts are returned. This can be done by adding the appropriate parameter to the contextUrl in the account aggregation. This approach ensures efficient account aggregation while limiting the number of accounts processed in a single request.

You can try with any of this query parameter in account aggregation contextUrl

baseUrl/members?limit=20
baseUrl/members?per_page=20

Thanks! @Arun-Kumar. I will try to do this.

hi @Shalaka_Gawande if your requirement says only 20 record you can do it from aggregation task also
maxIdentities:
Sets a maximum number of Identities to aggregate; primarily used for performance testing or for testing aggregation of a small number of records from a large data source

1 Like

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