Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfatehi/plaid-debt-tracker
track debt repayments by watching your bank account via integration with plaid
https://github.com/kfatehi/plaid-debt-tracker
Last synced: 19 days ago
JSON representation
track debt repayments by watching your bank account via integration with plaid
- Host: GitHub
- URL: https://github.com/kfatehi/plaid-debt-tracker
- Owner: kfatehi
- Created: 2021-09-27T01:09:41.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-29T03:05:02.000Z (over 2 years ago)
- Last Synced: 2025-01-03T19:17:38.622Z (23 days ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
create a json file for the debt like this:
debt.json
```json
{
"matcher":"Zelle payment from Borrower",
"startBalance": 36000,
"startDate": "2021-06-01"
}
```go through the plaid quickstart to get your plaid ids,
stick them in the config file:config.js
```js
module.exports = {
clientId: 'plaid-client-id',
secret: 'plaid-secret',
access_token: 'access-development-your-bank-account-token',
}
```now you can run main.js and your debt.json file will
populate with repayments per your matcheryou can run this daily against new transactions.
you can expand it to automate communications with the borrower, you, etc