UNPKG
firefly-iii
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Unofficial Firefly III API SDK for firefly-iii
github.com/f97/firefly-iii
f97/firefly-iii
firefly-iii
/
src
/
accounts
/
attachments.js
9 lines
(6 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
request =
require
(
'../request'
)
const
getAccountsAttachments
=
async
(
host, token, id, body = {}
) => {
const
json =
await
request.
get
(
`
${host}
/accounts`
,
`
${id}
/attachments`
, body, token)
return
json }
module
.
exports
= getAccountsAttachments