I am developing an android application where I need to capture an image and send to the Salesforce server.
Currently I have tried to encode the image to base64 and then send, but I need to send >= 500 images to encode in base64 at the same time.
If I send >=500 images will the server payload accept? and is there any other best way to achieve this?
The Salesforce soap api, which’ll be the best way to bulk create data has a limit of 200 rows per request, and a limit of 50Mb total request size per request. You’ll need to chunk up your 500 images into multiple calls to create so that each individual request doesn’t go over these limits.