in functions/source/CreateIncidentByPhone/index.js [105:117]
var getPostOptions = function (params) {
params.get_options = {
host: process.env.SERVICENOW_HOST,
port: '443',
path: '/api/now/table/incident',
method: 'POST',
headers: {
"Content-Type": 'application/json',
Accept: 'application/json',
Authorization: 'Basic ' + Buffer.from(process.env.SERVICENOW_USERNAME + ":" + process.env.SERVICENOW_PASSWORD).toString('base64'),
}
};
};