ERROR: Display Error on maxSize is greater than 200

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eddieadams
    Junior Member
    • Apr 2015
    • 16

    ERROR: Display Error on maxSize is greater than 200

    I am getting a Display Error when the maxSize exceeds the 200 results. Is there anyway to increase this value?
  • eddieadams
    Junior Member
    • Apr 2015
    • 16

    #2
    I am using the REST API by calling the URL: /api/v1/CustomEntityName?maxSize=201

    Comment

    • yuri
      Member
      • Mar 2014
      • 8669

      #3
      Use offset and limit parameters.
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      • eddieadams
        Junior Member
        • Apr 2015
        • 16

        #4
        URL: api/v1/CustomEntityName?offset=0&limit=10000

        still only results 200 records

        Comment

        • yuri
          Member
          • Mar 2014
          • 8669

          #5
          You should paginate. Make multiple calls: [0, 200], [200, 400], ...
          If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

          Comment

          Working...