Getting the next hundred records from getAddressBook

mfamini

Member
Hi,

I am making a request to /AddressBookManager?WSDL invoking getAddressBook, I am getting the first hundred records from it and the question would be if there's a way to get the next hundred then the next hundred(pagination)?

I've been looking for possible solutions like sending parameters/arguments to the method when invoking it just want to know if this is possible at all.

I don't have access to the JDE and was just given the wsdl, and having a hard time guessing what is possible or not.

Any help would be very much appreciated.

Thank you!


The code(node.js):

client.AddressBookManagerService.AddressBookManagerPort.getAddressBook({args could be inserted here to be passed}, function(err,response){
...
});
 
Back
Top