You most likely just need to add a HTTP header like this:
var request = new RestRequest(Method.POST);
request.Headers.Add("Content-Type", "application/json");
to clarify what type of content you're sending in your POST body (that is assuming you are sending JSON in your POST body - otherwise adapt as needed).
This has nothing to do with your bearer token authentication ...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…