There is a code for sending a Post request with the phone and lang fields in the request body. Without FormUrlEncoded this business does not work. What does this abstract mean and why is it needed? I tried to shove the request body differently, but it didn't work out.
public interface SmsApi { @FormUrlEncoded @POST("phone_add/{id}") Call<PhoneAddModel> phoneAdd(@Path("id") String id, @Field("phone") String phone, @Field("lang") String lang); }