Authentication for API requests
All API requests are authenticated using a BEARER token. You can manage tokens and create a new API token in Organization Settings > Integration Access
.
Using the token
The token must be sent in the Authorization
header of each requests that requires authentication.
Authorization: Bearer <token>
Example in C#:
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://sandbox.approveowl.com/api/v1/applicants/");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());