この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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!
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
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 ,
I think it does return everything there is no pagination
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?