if You Are Sure That The Request Id Will Always By The Second Attr in The Json Object Then You Can Do Some String Manipulation
string.Split(',') Will Return Array Of Strings Split By The Comma , Now We Know That The Request Id Is The Second Eelment In This Array So string.Split(',')[1] Should return The Following String "request_id":"b1c8ba46db3ffa807ea0f4e9bf9619ca"
if U Chain Another Split But this Time With Colon and Got The Second Member Of The Out Put Array It Will Be The Id Value string.Split(':')[1]
If You Don't Want The Quotation Mark You Can Do String.Replace("\"",string.Empty)
So Your Code Should be
JsonObject.Split(',')[1].Split(':')[1].Replace("\"",string.Empty)
You Could Split By The Colon From The First Time But I Want To Explain More
if You Don't Like That You Can Use NewtonSoft.Json Package To Deserialize The Json Object To Previously Created R