I want to post an Integer list using retrofit. It looks like this image in postman
In postman everything is good but when I want to post this using retrofit, possibilities don't post successfully.
Here is my code :
@Headers({"Accept: application/json" , "Content-Type: application/x-www-form-urlencoded"})
@FormUrlEncoded
@POST("locations/add")
Observable<Response<SimpleResponseJM>> addLocation(
@Field("possibilities[]") List<Integer> possibilities);