def post[T, U](data: T)(implicit writes: Writes[T], reads: Reads[U]): Future[RedoxResponse[U]] =
    sendReceive[U](basePost.withBody(Json.toJson(data)))