const request = require('request');
const options = {
method: 'PATCH',
url: 'https://api.betterez.com/accounts/customers/%7B%7BcustomerId%7D%7D',
headers: {'content-type': 'application/json', 'x-api-key': '{{x-api-key}}'},
body: {
operations: [{op: 'activate', path: '/activeCustomerAccount', value: '{{token}}'}]
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});