Apito REST API Integration with C# Project
Using RestClient
note
Always remember to replace API_SECRET
of the Bearer Token and project-id
of the URL with the correct value from apito console.
Go to this page if you do not know where to find your api secrets and endpoints for your project
var client = new RestClient("https://api.apito.io/secured/rest/project-id");
var request = new RestRequest(Method.GET);
request.AddHeader("content-type", "application/json");
request.AddHeader("authorization", "Bearer API_SECRETS");
IRestResponse response = client.Execute(request);