Hi all,
I have a quick questions regarding this api https://experienceleague.adobe.com/docs/experience-manager-65/assets/extending/mac-api-assets.html?l...
What's the limit of folders sent by the API when making the call? Is there pagination?
I can't find this on the docs
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @apollostears,
Pagination is supported, despite the fact it is not directly mentioned in the documentation. You can see that json response provides information about offset and limit.
You can simply use offset and/or limit in query parameters for pagination e.g.
http://localhost:4502/api/assets/we-retail/en.json?limit=5&offset=1
Hi @apollostears,
Pagination is supported, despite the fact it is not directly mentioned in the documentation. You can see that json response provides information about offset and limit.
You can simply use offset and/or limit in query parameters for pagination e.g.
http://localhost:4502/api/assets/we-retail/en.json?limit=5&offset=1
Thank you! Do you know by default what's the limit of returned elements?
Views
Likes
Replies