Now, triPOS Cloud can modify debit flags, allowDebit and isDebitRefundSupported using PATCH /cloudapi/v1/lanes/{{laneId}}/configuration endpoint. allowDebit allows debit-only cards to be used. The credit functionality of cards will still work if this is set to false.
For more information please visit here.
The following are the defaults and validation errors of debit in PATCH /cloudapi/v1/lanes/{{laneId}}/configuration endpoint:
allowDebit = true, debit is enabled for all the transactions.isDebitRefundSupported = true, debit refund support is enabled.Here is an example request modifying debit configurations:
{
"allowDebit": true,
"isDebitRefundSupported": true
}