Change call REST limit size

0
Hello people, Everytime that I do a Call REST activity like this microflow: It gives me a total of 10 objects: Is there any way to change this limit to an upper number? Thank you!
asked
2 answers
1

Check if your REST API endpoint can handle the following query-option: ‘?$top=3’, for example:

https://api.demo.com/contactapi/v1/getcontacts?$top=3, given the fact that you would only wish to see the top 3 results.

Edit: your API can also provide other query-options in order for you to search for a specific attribute, like: 

https://api.demo.com/contactapi/v1/getcontacts?filter=name=developer 

Hope this helps.

Kind regards,

Leander

answered
1

I guess you receive 10 objects in the response of the API call. So it depends how the API works. You should check whether the API supports pagination and whether you can specify the number of items in the call.

answered