400 http error while sending data via retrofit to flask server with kotlin

Solution
interface SimpleApi {

    @POST("adamapi")
    suspend fun pushPost(
        @Body body: Item2
    ): Response

}