let transactionIDs = ["transaction_id_01"] let reason = "Insufficient funds" do { try sdkInstance?.rejectTransactions(transactionIDs: transactionIDs, reason: reason) } catch { print("Error: \(error)") }
This operation rejects the specified transactions and provides reason for the rejection.
public func rejectTransactions(transactionIDs: [String], reason: String) throws
Was this page helpful?