在twilio的Usage Record API中获取今日记录

时间:2018-02-13 13:57:07

标签: node.js twilio twilio-api

我想获取lastMonth的账单(例如:for jan),在twilio API中,但是当我累积地将账单添加到记录中时,最后一条记录获得总账单,但它与1月份的账单不匹配我看着 twilio控制台。 你能看出实际问题是什么吗?

这是代码:

const accountSid = 'your-account-sid';
const authToken = 'your-auth-token'; 
const client = require('twilio')(accountSid, authToken);
let cost = 0;
let  filter = {
     startDate:'2018-01-01', //for  month of january 
     endDate:'2018-01-31'  
};
client.usage.records.each(filter,record => {
    cost += parseFloat(record.price);
    console.log(cost); //last loop will show the total cost 
    // console.log('-----------');

});

我正在使用twilio 3.x作为Nodejs。

0 个答案:

没有答案