How to get particular elements of array

Hello,

 

I have a array of integer [1,2,3,4,5,6,7,8,9,10,11] is there any function which will give me elements of array if I pass index.

or what's the way to get batches of array in particular set.

e.g. [123],[456],[789],[10,11]

 

thanks,

Tushar

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi Mike,

    Below is the use case:

    I have 10K ids in an array, which I have pass as a input to REST webservice. But when I pass all of those single time the response is more than 5MB and appian is not able to parse it.
    In this case I'm trying to call the REST webservice in batches of 1000 ids at a time and append the response of webservice. In this case what is the best way to batch the input array 10k ids


    Thanks,
    Tushar
Children