The default requests integrated in volley don't allow to pass a JSONArray as request body in a POST request. Instead, you can only pass a JSON object as a parameter.
However, instead of passing a JSON object as a parameter to the request constructor, you need to override the getBody() method of the...