Am trying to post this data on my server using retrofit on my android app but icant seem to get through how can I be helped thanks guys
Here is my APiClient
public interface VerifiedStudentJsonPlaceholder {
    @Headers("Content-Type: application/json")
    @POST("verifiedStudent")
    Call<VerifiedStudent> addVerifiedStudent(@Header("Authorization") String token_value, @Body JsonObject jsonObject);
}
hers is the typ of data that i want to post
{
    "firstname":"mutalemwa",
    "lastname":"clemence",
    "college": "SMCOSE",
    "university": "SUA",
    "phone": "078989898"
    
}
 
    