const request = require('request');
const options = {
method: 'GET',
url: 'https://api.betterez.com/btrz-pay/payment-methods',
qs: {channel: '{{valid-channel}}', providerId: '{{valid-providerId}}'},
headers: {authorization: 'Bearer {{jwtToken}}', 'x-api-key': '{{x-api-key}}'}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});