Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
set page size to 2,500
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Murdock committed Jun 10, 2015
1 parent 4b5e38b commit 02eec28
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ public static ETResponse<ETCube> retrieve(ETClient client,
property.setValue(values);
properties.add(property);
}
APIProperty page = new APIProperty();
page.setName("page");
page.setValue("1");
APIProperty pageSize = new APIProperty();
pageSize.setName("pageSize");
pageSize.setValue("2500");
properties.add(page);
properties.add(pageSize);
return ETRestObject.soapCall(client,
ETCube.class,
"GET",
Expand Down

0 comments on commit 02eec28

Please sign in to comment.