Nodejs Restify Collection/Array param

I am in need to send multiple items over rest web service being developed over Nodejs + Restify. I can send single object e.g. User.

Suppose, my app got 10 - 100 users at once and want to upload on server via Restful web service developed in nodejs/restify. What would be good solution for this?

I managed to do that through a jQuery Ajax Request. You can see my post for the solution. Post jQuery JSON Object to NodeJs Restify

You can put you array in a Json, and then send it to your web service in one url parameter using JSON.stringify(your json)