Disable an Account Number
When you disable an Account Number, Fintoc automatically rejects every inbound transfer directed to that Account Number and returns it to the sender. If an Account Number should no longer receive payments, disable it so you avoid handling stray inbound transfers.Example use cases
- Your company assigns one Account Number per user, and a user has completed offboarding from your app. Disable that user’s Account Number so payments made for the user are automatically returned and don’t waste your operational resources.
- Your company assigns one Account Number per order, and a customer bought a product at your store. Disable that order’s Account Number once the customer has paid to avoid receiving a double payment. If the customer misses the payment confirmation notice and pays twice, Fintoc returns the money automatically.
Disable an Account Number with the API
status set to disabled:
Set inbound transfer amount limits
You can restrict which inbound transfers an Account Number accepts. If a transfer does not meet the criteria you set, Fintoc rejects it. Rejected transfers do not appear on your account statements and do not incur fees. Setmin_amount and max_amount in the smallest currency unit. For example, 30000 is 300.00 MXN. Fintoc supports three kinds of amount limits:
Set limits with the API
options:
Test the integration
Confirm the disable and amount-limit behavior intest mode before going live. Use a test secret API key (sk_test_...) and the test Account Number you created above.
To test a disabled Account Number, disable it with the request above, then simulate an inbound transfer to its number. Fintoc rejects the transfer and returns it to the sender. The transfer does not appear on your account statement and incurs no fee.
To test amount limits, create an Account Number with min_amount set to 30000 and max_amount set to 40000, then simulate two inbound transfers:
- A transfer of
35000(350.00 MXN) falls within the limits, so Fintoc accepts it. - A transfer of
20000(200.00 MXN) falls belowmin_amount, so Fintoc rejects it and returns it to the sender.
test mode from the Simulate receiving a transfer endpoint.