Hi, is it possible to make a POST request without parameters? like
@POST("") @Headers({ "Content-Type: application/xml; charset=Utf-8"}) Call postRequest(@Body Request body);
You can use @POST(".") to send a request to the base URL.
@POST(".")
Most helpful comment
You can use
@POST(".")to send a request to the base URL.