· 6 years ago · Aug 13, 2019, 11:08 AM
1const paystackTransactionsFetcher = require('./PaystackTransactionsFetcher');
2
3paystackTransactionsFetcher.fetch({
4 secretKey: 'sk_live_youwishiwereavalidkey___', // secret key
5 perPage: 100, // leave empty to fetch 50 per page
6 status: 'all', // leave empty to fetch only successful
7 startFrom: new Date('2011-01-01'), // Leave empty to fetch only a week ago
8})
9 .then((i) => { console.log(JSON.stringify(i, null, 2)); })
10 .catch(console.error);