Announcement

Collapse
No announcement yet.

How to Retrieve All Records from EspoCRM?

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

  • How to Retrieve All Records from EspoCRM?

    I am retrieving data from the EspoCRM endpoint http://espocrmwebsiteapi/v1/myentity. However, the response is limited to 200 records at a time, and I have more than 500 records in total.

    How can I fetch all the records? thanks in advance

  • #2
    in folder data -> config.php, change the value here: 'recordListMaxSizeLimit' => 200,

    but be aware, the larger the number of records, the more database action happens. In your case I guess will slow down displaying the records a bit, if you would modify it to larger numbers, a database timeout could happen. That is the reason for the default of 200.

    Comment


    • #3
      Also consider implementing pagination on the client site if possible. To send a few requests with an offset and limit parameters

      Comment

      Working...
      X