I have a basic post operation that works on a single object of RecordIem. What I would like to do is do the same action but in bulk by posting an array of reque
RecordIem
For all that just get an empty array whatever they try, try this:
var request = $.ajax({ dataType: "json", url: "/api/users", method: "POST", data: { '': postData} });
The data must be a single anonymous object instead of a raw array.
Info was found here.