I am trying to send a table of about 140 rows and 5 columns as a JSON object (around 20 KB in size) from VBA using MSXML2.ServerXMLHTTP in a body of a POST request to an endpoint made available from R using plumber API package. The endpoint/function running in R on the server is throwing the following error: simpleError in fromJSON(requestList): argument "requestList" is missing, with no default
requestList is the parameter passed to the endpoint function. It looks like it gets lost in the web call. If I reduce the table size to 30 rows instead of 140 rows, requestList is found and the request is served successfully.
My platform is as follows: 1. Endpoints are written in R and exposed using Plumber API. 2. Endpoints are running on AWS instance with Redhat 7.5. 3. Timeout for the request is set to 100 minutes on VBA (client side).