I need to send an array with Post Request using Retrofit. In Postman worked correctly like this
But in Android, I can not send the correct request.Please, help me.
UPDATE
I try like this:
@POST("/api/friends")
fun getContactsList(@Header("Authorization") token String,@Query("phones[]") phones : Array<String>) : Single<List<Friends>>