Authenticating API Requests
How to use your access token
Once you have a token, simply provide it as an Authorization:Bearer header in your requests, as shown below.
var request = require('request');
var headers = {
'Authorization': 'Bearer <access_token>',
'Accept': 'application/json'
};
var options = {
url: 'https://api.edrv.io',
headers: headers
};
$ curl \
-s https://api.edrv.io \
-H 'Authorization:Bearer <access_token>' \
-H 'Accept:application/json'
Updated over 1 year ago
What’s Next
Explore eDRV API endpoints