Announcement

Collapse
No announcement yet.

ERROR: Display Error on maxSize is greater than 200

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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?

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

    Comment


    • #3
      Use offset and limit parameters.

      Comment


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

        still only results 200 records

        Comment


        • #5
          You should paginate. Make multiple calls: [0, 200], [200, 400], ...

          Comment

          Working...
          X