PHP...anyway to disable pager instead of having a default 30?

…even if i delete the pager code my output is limited to 30. I know 500 is the max but just want to remove it entirely. Thx

Hi @hcanning2014,

If you’re asking whether you can make one request and get ALL the records, the answer is no.
You have to iterate over the records, passing along a pager object, setting the pageSize [indeed, if not set, the default is 30] to whatever you choose and incrementing the pageIndex at each iteration.

Ok thanks. Setting to 500 will suffice.