I need to execute post request with retrofit but i have a problem which i can\'t understand very well. Before trying with code i tested api call with Postman an
Java:
@POST("/api/android-feedback") Call sendFeedback(@Body FeedbackBody feedback);
Kotlin:
@POST("/api/android-feedback") fun sendFeedback(@Body feedback: FeedbackBody): Call
Also, probably you forgot leading slash in the endpoint.