From 161f7da5b5b5b996edff40411a9362b6055ba138 Mon Sep 17 00:00:00 2001 From: Elnaz Moshfeghian Date: Fri, 25 Mar 2016 10:56:47 -0700 Subject: [PATCH] Support API version 2016-03-21 --- examples/check.py | 1 + tests/test_bankaccount.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/examples/check.py b/examples/check.py index 72366f7..274e2e4 100644 --- a/examples/check.py +++ b/examples/check.py @@ -34,6 +34,7 @@ description = 'Example bank account', routing_number = '122100024', account_number = '1234564789', + account_type = 'company', signatory = 'John Doe' ) diff --git a/tests/test_bankaccount.py b/tests/test_bankaccount.py index b026951..7fb759f 100644 --- a/tests/test_bankaccount.py +++ b/tests/test_bankaccount.py @@ -26,6 +26,7 @@ def test_create_bankAccount(self): bankAccount = lob.BankAccount.create( routing_number='122100024', account_number='123456789', + account_type = 'company', signatory='John Doe' ) self.assertTrue(isinstance(bankAccount, lob.BankAccount)) @@ -46,6 +47,7 @@ def test_verify_bankAccount(self): ba = lob.BankAccount.create( routing_number='122100024', account_number='223456789', + account_type = 'company', signatory='John Doe' ) verBa = lob.BankAccount.verify(id=ba.id, amounts=[25, 75])