Nobody tell that read the document. The document explain something but it doesnt show any using. I did what the document explain but i dont know how i will call the webservice.
Solved! Go to Solution.
Hi @Soner Canoğlu. You can also try a tool like Postman to generate the API request in C# (RestSharp). For example, the http request to https://httpbin.org/ip resource is represented as:
var client = new RestClient("https://httpbin.org/ip"); var request = new RestRequest(Method.GET); request.AddHeader("postman-token", "2754e14f-74c3-bbc6-f333-a59253a4f605"); request.AddHeader("cache-control", "no-cache"); IRestResponse response = client.Execute(request);