Content Delivery API - Missing page
# help-with-umbraco
n
Using Umbraco 13.1.1 Doing a fetch for all children and its missing a page from its Json. No log errors, when I look at the json, the total says 13 items but its only bringing back 10. URL im using to test is https://localhost:44334/umbraco/delivery/api/v2/content?filter=contentType:contentPage&fetch=children:SITENAME Any ideas how I can figure out this issue?
l
Add
&skip=0&take=13
to your query, it should return all 13 items. Your queries will default to returning the first 10 items, so you need to let Umbraco know you want more. Alternatively you can implement paging by doing
&skip=0&take=10
for the first page of results
&skip=10&take=10
for the 2nd page of results
63 Views