two-factor-auth
Enable or retrieve two-factor authentication (2FA) codes for Israeli bank accounts using phone number verification. Supports major banks and card providers for secure account access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
bankId | Yes | ||
otpCode | No | ||
phoneNumber | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"trigger",
"get-token"
],
"type": "string"
},
"bankId": {
"enum": [
"hapoalim",
"hapoalimBeOnline",
"beinleumi",
"union",
"amex",
"isracard",
"visaCal",
"max",
"leumiCard",
"otsarHahayal",
"discount",
"mizrahi",
"leumi",
"massad",
"yahav",
"beyahadBishvilha"
],
"type": "string"
},
"otpCode": {
"type": "string"
},
"phoneNumber": {
"type": "string"
}
},
"required": [
"bankId",
"phoneNumber",
"action"
],
"type": "object"
}