REST post number of records

0
Hi all,   I've got 19.000 records that I want to send via a REST (POST). I'm wondering if I should do multiple calls and if yes how many records I can send per call.
asked
2 answers
7
  • There is no limit for the payload data
  • I would recommend to process the record in a batch limit to 1000
  • Server might go down if huge transactions or objects are processed if the payload has more data
  • Also keep your payload data more simple and with required attributes
answered
1

Hi Josephine,

Generally speaking I would say that you can send 19.000 records in one call, but I think you should consider if this amount might grow considerably in the future. If so I would send them in batches of 5.000 for example, if not I would send it in one go.

Hope this helps!

answered