Periodic Payment - תשלום מחזורי
Create a link for approval of monthly recurring fixed charges.
Periodic Payment lets a payer digitally approve a recurring, fixed-amount schedule.
The payment is executed automatically on the predefined date without further action required by the debtor or the creditor.
How it works?
Currently supported for "Feezback links" onlySeamless links do not support the periodic payments functionality yet.
Supported banks
| Bank | Code |
|---|---|
| Leumi | 10 |
| Hapoalim | 12 |
| Discount | 11 |
| Mercantile | 17 |
FIBI group*
| 14, 26, 31, 46, 52 |
| Yahav | 04 |
Use Periodic Payment when:
- The payer should approve a fixed recurring amount.
- The schedule has between 2 and 12 payments.
- You use Feezback's screens in the flow.
*If you need changing debit charges, use the Debit Charges product instead.
How to generate a Periodic-Payment link?
- Complete the Single-Payment integration and configuration requirements for Feezback-Link.
- Once you are able to generate a single payment link, add the
periodicobject, configuring the payment:- Add a
periodicobject insideflow.payment.Field Type Required Behavior flow.payment.periodic.editableboolean Yes Controls whether the payer can switch between periodic and one-time payment. Set falseto lock the payment as periodic. If true: the debtor will select the payment type on feezback’s UI.flow.payment.periodic.startDatestring
(ISOdate formate)Conditional Optional by itself. If sent, the payer cannot change it. Required when occurencesis sent. UseYYYY-MM-DDformat.payment.periodic.occurencesnumber Optional Number of payments. Must be between 2 and 12.
- Add a
- Generate a Periodic Payment link
Full JWT example
{
"encrypt": true,
"sub": "user-123",
"iss": "tpp/{TPP_ID}",
"srv": "fast/user",
"ttl": 1800,
"flow": {
"id": "default",
"userWasAuthenticated": false,
"context": "periodic-202601",
"userIdentifier": {
"type": "ID",
"value": "216139683",
"editable": true
},
"redirects": {
"pisSuccess": "https://example.com/success",
"pisFailure": "https://example.com/failure",
"pisNotComplete": "https://example.com/not-complete",
"ttlExpired": "https://example.com/expired"
},
"payment": {
"remittanceInformationUnstructured": "Monthly plan",
"creditor": {
"name": "Company Ltd",
"account": "IL760125380000000693304",
"accountType": "iban"
},
"transfer": {
"amount": {
"value": "50.00",
"editable": false
},
"currency": {
"value": "ILS",
"editable": false
}
},
"periodic": {
"editable": false,
"startDate": "2026-12-01",
"occurences": 6
}
}
}
}Updated 7 days ago
Did this page help you?