diff --git a/src/main/java/org/zendesk/client/v2/Zendesk.java b/src/main/java/org/zendesk/client/v2/Zendesk.java index 90b95cfa..da348a56 100644 --- a/src/main/java/org/zendesk/client/v2/Zendesk.java +++ b/src/main/java/org/zendesk/client/v2/Zendesk.java @@ -3241,7 +3241,7 @@ public Iterable getUserSubscriptions(User user) { public Iterable getUserSubscriptions(Long userId) { return new PagedIterable<>( - tmpl("/help_center/users/{userId}/subscriptions.json").set("userId", userId), + tmpl("/help_center/users/{userId}/subscriptions.json?page[size]=100").set("userId", userId), handleList(Subscription.class, "subscriptions")); } @@ -3251,7 +3251,7 @@ public Iterable getArticleSubscriptions(Long articleId) { public Iterable getArticleSubscriptions(Long articleId, String locale) { return new PagedIterable<>( - tmpl("/help_center{/locale}/articles/{articleId}/subscriptions.json") + tmpl("/help_center{/locale}/articles/{articleId}/subscriptions.json?page[size]=100") .set("locale", locale) .set("articleId", articleId), handleList(Subscription.class, "subscriptions")); @@ -3263,7 +3263,7 @@ public Iterable getSectionSubscriptions(Long sectionId) { public Iterable getSectionSubscriptions(Long sectionId, String locale) { return new PagedIterable<>( - tmpl("/help_center{/locale}/sections/{sectionId}/subscriptions.json") + tmpl("/help_center{/locale}/sections/{sectionId}/subscriptions.json?page[size]=100") .set("locale", locale) .set("sectionId", sectionId), handleList(Subscription.class, "subscriptions"));