const request = require('request');
const options = {
method: 'GET',
url: 'https://api.betterez.com/inventory/items',
qs: {
providerId: ':providerId',
productId: ':productId',
type: 'paid_in',
disabled: 'false'
},
headers: {'x-api-key': '{{x-api-key}}'}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});