fetch-transactions
Retrieve transaction data from Israeli bank accounts using specified credentials. Supports major banks and credit card companies, combining installments as needed for consolidated financial tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bankId | Yes | ||
combineInstallments | No | ||
credentials | Yes | ||
showBrowser | No | ||
startDate | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bankId": {
"enum": [
"hapoalim",
"hapoalimBeOnline",
"beinleumi",
"union",
"amex",
"isracard",
"visaCal",
"max",
"leumiCard",
"otsarHahayal",
"discount",
"mizrahi",
"leumi",
"massad",
"yahav",
"beyahadBishvilha"
],
"type": "string"
},
"combineInstallments": {
"type": "boolean"
},
"credentials": {
"additionalProperties": false,
"properties": {
"card6Digits": {
"type": "string"
},
"id": {
"type": "string"
},
"longTermTwoFactorAuthToken": {
"type": "string"
},
"nationalID": {
"type": "string"
},
"num": {
"type": "string"
},
"password": {
"type": "string"
},
"userCode": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"password"
],
"type": "object"
},
"showBrowser": {
"type": "boolean"
},
"startDate": {
"type": "string"
}
},
"required": [
"bankId",
"credentials"
],
"type": "object"
}