const request = require('request');
const options = {
method: 'GET',
url: 'https://api.betterez.com/operations/transactions/[transactionId]/cancellable-items',
qs: {displayAll: 'false', channel: 'backoffice'},
headers: {'x-api-key': '{{x-api-key}}', authorization: 'Bearer {{jwtToken}}'}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});