Creating a Bank Account Using a Template ID

Creating a Bank Account Using a Template ID


If you want to create a bank account using an existing account template, you can do so by providing the template ID as shown below. The template ID is actually your bank account ID, which can be retrieved using the following link: Onlinecheckwriter API

Response

  1. {
  2.   "success": true,
  3.   "data": [
  4.     {
  5.       "id": "qx5NrWjymj2n3l6",
  6.       "category_name": "Payroll Check",
  7.       "design_name": "payroll-final",
  8.       "image": "https://ocw-local-s3.s3.amazonaws.com/3/payroll-final.png",
  9.       "premium": false,
  10.       "price": "0.00"
  11.     },
  12.     {
  13.       "id": "rz6VoW41dj589lK",
  14.       "category_name": "Personal Checks",
  15.       "design_name": "personal-final",
  16.       "image": "https://ocw-local-s3.s3.amazonaws.com/2/personal-final.png",
  17.       "premium": false,
  18.       "price": "0.00"
  19.     },
  20.     {
  21.       "id": "OYxZqXGKdeRzVvJ",
  22.       "category_name": "Business Checks",
  23.       "design_name": "Business checks two",
  24.       "image": "https://ocw-local-s3.s3.amazonaws.com/1/Business%20checks%20two.png",
  25.       "premium": true,
  26.       "price": "0.50"
  27.     }
  28.   ]
  29. }


  1. {
  2.     "bankAccounts": [
  3.         {
  4.             "name": "Demo Bank 1",
  5.             "nickName": "Demo Nick Name",
  6.             "accountNumber": "1111111111",
  7.             "addressLine1": "Test Address Line 1",
  8.             "addressLine2": "Test Address Line 2",
  9.             "phone": "900244400",
  10.             "city": "Sanjose",
  11.             "state": "CA",
  12.             "zip": "95113",
  13.             "bankName": "Demo Bank",
  14.             "bankRoutingNumber": "021000021",
  15.             "bankAddress1": "Address 1",
  16.             "bankCity": "Dallas",
  17.             "bankState": "CA",
  18.             "bankZip": "75001",
  19.             "bankIdentity": "58756985",
  20.             "templateId": "qx5NrWjymj2n3l6"
  21.         }
  22.     ]
  23. }