UNPKG

firefly-iii

Version:

Unofficial Firefly III API SDK for firefly-iii

9 lines (6 loc) 257 B
const request = require('../request') const getAccountsTransactions = async (host, token, id, body = {}) => { const json = await request.get(`${host}/accounts`, `${id}/transactions`, body, token) return json } module.exports = getAccountsTransactions