using Flurl.Http;
dataMapperSurvey = "url"
var responseJString = await dataMapperSurvey.WithHeader("AUTH_TOKEN", "335351").GetStringAsync();
Here I'm try to hit the url with that specific Auth_token porvided in header.
If I check the response in Postman with POST I get an exception and If I do GET I get proper Response.
I don't know how to do GET request here, Can anyone Help?