Ofxtools Documentation Release 0.8.22

Total Page:16

File Type:pdf, Size:1020Kb

Ofxtools Documentation Release 0.8.22 ofxtools Documentation Release 0.8.22 Christopher Singley Nov 20, 2020 Contents: 1 Installing ofxtools 3 1.1 Installation dependencies.........................................3 1.2 Standard installation...........................................3 1.3 Bleeding edge installation........................................4 1.4 Developer’s installation.........................................4 1.5 Extra goodies...............................................4 2 Downloading OFX Data With ofxget5 2.1 Locating ofxget..............................................5 2.2 Using ofxget - TL;DR..........................................5 2.3 Storing ofxget passwords in the system keyring.............................6 2.4 Using ofxget - in depth..........................................7 2.5 Scanning for OFX connection formats.................................. 11 3 Using OFXClient in Another Program 15 4 Parsing OFX Data 17 4.1 Deviations from the OFX specification................................. 19 5 Generating OFX 21 6 Using ofxtools with SQL 23 7 Contributing to ofxtools 27 8 Adding New OFX Messages 29 8.1 Request and Response.......................................... 29 8.2 Recurring Requests............................................ 36 8.3 Synchronization............................................. 40 8.4 Extending the Message Set........................................ 42 9 Additional Resources 45 9.1 More open-source OFX code...................................... 45 10 What is it? 47 11 Where is it? 49 i 12 Installation Dependencies 51 ii ofxtools Documentation, Release 0.8.22 ofxtools is a Python library for working with Open Financial Exchange (OFX) data - the standard format for downloading financial information from banks and stockbrokers. OFX data is widely provided by financial institutions so that their customers can import transactions into financial management software such as Quicken, Microsoft Money, or GnuCash. If you want to download your transaction data outside of one of these programs - if you wish to develop a Python application to use this data - if you need to generate your own OFX-formatted data. ofxtools is for you! Contents: 1 ofxtools Documentation, Release 0.8.22 2 Contents: CHAPTER 1 Installing ofxtools You have a few options to install ofxtools. If you like, you can install it in a virtual environment, but since ofxtools has no external dependencies, that doesn’t really gain you much. A simpler option for keeping clutter out of your system Python site is the user install option, which is recommended if only one system user needs the package (the normal situation). 1.1 Installation dependencies You need to install Python 3 (at least version 3.6) in order to use ofxtools. It won’t work at all under Python 2. In order to use the OFX client to download OFX files, your Python 3 installation needs to be able to validate SSL certificates. Users of Mac OS X should heed the following note from the ReadMe.rtf included with the Python installer as of version 3.6: This variant of Python 3.6 now includes its own private copy of OpenSSL 1.0.2. Unlike previous releases, the deprecated Apple-supplied OpenSSL libraries are no longer used. This also means that the trust certificates in system and user keychains managed by the Keychain Access application and the security command line utility are no longer used as defaults by the Python ssl module. For 3.6.0, a sample com- mand script is included in /Applications/Python 3.6 to install a curated bundle of default root certificates from the third-party certifi package. To facilitate keeping this important security package up to date, it’s advisable for Mac users to instead employ pip: $ pip install certifi 1.2 Standard installation If you just want to use the ofxtools library, and you don’t have any special needs, you should probably install the most recent release on PyPI: 3 ofxtools Documentation, Release 0.8.22 $ pip install --user ofxtools Or if you want to install it systemwide, as root just run: $ pip install ofxtools 1.3 Bleeding edge installation To install the most recent prerelease (which is where the magic happens, and also the bugs), you can download the current master, unzip it, and install via the included setup file: $ pip install --user . 1.4 Developer’s installation If you want to hack on ofxtools, you should clone the source and install is in development mode: $ git clone https://github.com/csingley/ofxtools.git $ cd ofxtools $ pip install -e . $ pip install -r ofxtools/requirements-development.txt 1.5 Extra goodies In addition to the Python package, these methods will also install the ofxget script - a basic command line interface for downloading files from OFX servers. pip uninstall ofxtools will remove this script along with the package. Some financial institutions make you use their web application to generate OFX (or QFX) files that you can download via your browser. If they give you a choice, prefer “OFX” or “Microsoft Money” format over “QFX” or “Quicken”. Other financial institutions are good enough to offer you a server socket, to which ofxtools can connect and download OFX data for you. 4 Chapter 1. Installing ofxtools CHAPTER 2 Downloading OFX Data With ofxget 2.1 Locating ofxget The ofxget shell script should have been installed by pip along with the ofxtools library. If the install location isn’t already in your $PATH, you’ll likely want to add it. User installation • Mac: ~/Library/PythonX.Y/bin/ofxget • Windows: AppData\Roaming\Python\PythonXY\Scripts\ofxget • Linux/BSD/etc.: ~/.local/bin/ofxget Site installation • Mac: /Library/Frameworks/Python.framework/Versions/X.Y/bin/ofxget • Windows: Good question; anybody know? • Linux/BSD/etc.: /usr/local/bin/ofxget Virtual environment installation • </path/to/venv/root>/bin/ofxget If all else fails, you can execute python -m ofxtools.scripts.ofxget, or directly run python </path/ to/ofxtools>/scripts/ofxget.py. You can check where exactly that is by opening a Python interpreter and saying: >>> from ofxtools.scripts import ofxget >>> print(ofxget.__file__) 2.2 Using ofxget - TL;DR Find your financial institution’s nickname: 5 ofxtools Documentation, Release 0.8.22 $ ofxget list If your financial institution is listed, then the quickest way to get your hands on some OFX data is to say: $ ofxget stmt <server_nickname> -u <your_username> --all Enter your password when prompted. However, you really won’t want to set the --all option every time you download a statement; it’s very inefficient. Slightly more verbosely, you might say : $ ofxget acctinfo <server_nickname> -u <your_username> --write $ ofxget stmt <server_nickname> The first command requests a list of accounts and saves it to your config file along with your user name. This is in the nature of a first-time setup chore. The second command is the kind of thing you’d run on a regular basis. It requests statements for each account listed in your config file for a given server nickname. 2.3 Storing ofxget passwords in the system keyring Note: this feature is experimental. Expect bugs; kindly report them. Rather than typing them in each time, you can securely store your passwords in the system keyring (if one is available) and have ofxget retrieve them for you. Examples of such keyring software include: • Windows Credential Locker • Mac Keychain • Freedesktop Secret Service (used by GNOME et al.) • KWallet (used by KDE) To use these services, you will need to clutter up your nice clean ofxtools by installing the python-keyring package. $ pip install --user keyring Additionally, KDE users will need to install dbus-python. Note the recommendation in the python-keyring docs to install it systemwide via your package manager. Once these dependencies have been satisfied, you can pass the --savepass option to ofxget anywhere it wants a password, e.g. $ ofxget acctinfo <server_nickname> -u <your_username> --write --savepass That should set you up to download statements easily. To overwrite an existing password, simply add the --savepass option again and you will be prompted for a new password. To delete a password entirely, you’ll need to use your OS facilities for managing these passwords (they are stored under “ofxtools”, with an entry for each server nickname). 6 Chapter 2. Downloading OFX Data With ofxget ofxtools Documentation, Release 0.8.22 2.4 Using ofxget - in depth ofxget takes two positional arguments - request type (mandatory) and server nickname (optional) - along with a bunch of optional keyword arguments. See the --help for explanation of the script options. Available request types (as indicated in the --help) are list, scan, prof, acctinfo, stmt, stmtend and tax1099. We’ll work through most of these in an example of bootstrapping a full configuration for American Express. 2.4.1 Basic connectivity: requesting an OFX profile We must know the OFX server URL in order to connect at all. ofxtools contains a database of all US financial institutions listed on the OFX Home website that I could get to speak OFX with me. If you can’t find your bank in ofxget (or if you’re having a hard time configuring a connection), OFX Home should be your first stop. If you prefer, the OFX Blog also makes the same data available in a different format. Be sure to review user-posted comments on either site. You can also try the fine folks at GnuCash, who share the struggle. OFX Home has a listing for AmEx, giving a URL plus the ORG/FID pair (i.e. <FI><ORG> and <FI><FID> in the signon request.) This aggregate is optional per the OFX spec, and if your FI is running its own OFX server it is optional - many major providers don’t need it to connect. However, Quicken always sends <FI>, so your bank may require it anyway. AmEx appears to be one of these; its OFX server throws HTTP error 503 if you omit ORG/FID. Using the connection information from OFX Home, first we will try to establish basic connectivity by requesting an OFX profile, which does not require authenticating a login. $ ofxget prof --org AMEX --fid 3101 --url https://online.americanexpress.com/myca/ ,!ofxdl/desktop/desktopDownload.do\?request_type\=nl_ofxdownload This hairy beast of a command can be used for any arbitrary OFX server.
Recommended publications
  • Gnucash Tutorial and Concepts Guide
    GnuCash Tutorial and Concepts Guide The GnuCash Documentation Team GnuCash Tutorial and Concepts Guide by The GnuCash Documentation Team This Guide contains a tutorial for using 4.6 and describes the concepts behind GnuCash. Copyright © 2009-2021 GnuCash Documentation Team Copyright © 2010-2011 Yawar Amin Copyright © 2010 Tom Bullock Copyright © 2010-2011 Cristian Marchi Copyright © 2006 Chris Lyttle Copyright © 2003-2004 Jon Lapham Copyright © 2002 Chris Lyttle Copyright © 2001 Carol Champagne and Chris Lyttle Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link [ghelp:fdl] or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: 1.
    [Show full text]
  • Proceedings of the 7 Winona Computer Science Undergraduate Mirroring Content to Several Other Machines Simultaneously Research Seminar, April 19, 2007, Winona, MN, US
    Proceedings of the 7th Winona Computer Science Undergraduate Research Symposium April 19, 2007 Table of Contents Title Author Page Network File Distribution with the Lincoln Scully 1 BitTorrent Protocol Saint Mary’s University Analysis of Microsoft Office 2007 Catherine Beel 5 User Interface Design Saint Mary’s University PerfiTrak – A Web-based Personal Finance Matthew Lieder 16 System with Broad I/O Features Winona State University Cheating Detection and Prevention in Kevin Warns 26 Massive Multiplayer Online Role Playing Games Saint Mary’s University Network Throughput Analysis with Christopher Popp 31 Electromagnetic Interference Winona State University Network File Distribution with the BitTorrent Protocol Lincoln Scully Saint Mary's University of Minnesota 700 Terrace Heights #1605 Winona, MN 55987 [email protected] ABSTRACT originally intended and utilized for distributing large files among end users, namely Linux images [1, 2]. Since then it has become The peer-to-peer BitTorrent protocol is presented as a means for a popular method for sharing illegal digital copies of movies [1, 2] distributing content internally over a network, rather than relying and is reportedly responsible for one-third of all Internet traffic on the traditional client-server protocols. Instead of establishing a today [3]. Because of this, the creator has formed BitTorrent Inc. single one-way stream of information, BitTorrent makes several and negotiated with the Motion Picture Association of America connections to other clients that contain at least part of the desired and raised capital to make www.bittorrent.com into a store that information. This information is then simultaneously downloaded sells online video content [3].
    [Show full text]
  • Quickbooks Desktop Pro Import Invoices
    Quickbooks Desktop Pro Import Invoices Is Vance wackier or Mithraism after annihilated Aldwin wist so ungraciously? Parentless Dion combated no civets knells perplexingly after Carlin decks aggravatingly, quite troublesome. Viceless and Anglo-Irish Dominic untidy almost longwise, though Spiros escallop his hardbake connives. My experience duplications due, has also introduce the document to the bottom lines in a proforma invoice that lets customers will save unlimited customer invoices quickbooks This invoice factoring can import invoices into invoiced sync both have the desktop is the invoice that. Not supported file will desktop pro importer now get. This file is for Windows desktop versions and height not their for Mac. Exporting Invoice Information from QuickBooks to Excel. Please review of invoices iif file will desktop pro allows you have basic functionality you can adjust the invoice is extremely easy. Apply other payment support multiple invoices in QuickBooks Desktop Pro and now was are. This invoice number of invoices quickbooks desktop pro import invoices. You can copy and paste list range from abuse into QuickBooks Pro to add it remove the Customers Vendors Service Items Inventory go and Non-inventory Part lists To copy and paste list array from society into QuickBooks Pro select Lists AddEdit Multiple List Entries from the Menu Bar. Reduce 3 of data entry instantly route invoices for approval and eliminate history and. To export Brandboom invoices please choose the QuickBooks Desktop Invoices IIF format Refer of the. How to create fancy new water in quickbooks online from an. Therefore if so a platform powering the program and. Learn which PayPal transactions can be imported into QuickBooks.
    [Show full text]
  • A Gnucash Tutorial Presentation to Young Professionals CPA Discussion Group 19Th November 2014, Victoria University
    A GnuCash Tutorial Presentation to Young Professionals CPA Discussion Group 19th November 2014, Victoria University http://levlafayette.com Introducting GnuCash GnuCash is free and open source software accounting program, originally designed to have similar functionality to Quicken. It was originally released in 1998 and it under active development (last release 2.6.4 on September 28) with a release schedule up to September 2017. Multiple operating systems and architectures. GnuCash is available for Microsoft Windows XP/Vista/7/8, MacOS X for Intel or PowerPC, and Linux packages on a variety of architectures available for Fedora, Mandriva, RedHat/CentOS, or Ubuntu. There are older packages available for Debian, third-party RPMs for OpenSuSE, and documentation for Slackware, Gentoo, Solaris, and if all else fails, a tarball of the source files is available. Installation is from the following URL: http://www.gnucash.org/download.phtml Introducting GnuCash GnuCash by default stores data in an xml format and stores and reads each country’s special character sets by using UTF-8. Starting with version 2.4, GnuCash financial data can be stored in a SQL database using SQLite3, MySQL or PostgreSQL - all FOSS databases. It uses pure fixed-point arithmetic to avoid rounding errors which would arise with floating-point arithmetic (e.g., Magento). GnuCash is multilingual with the application's menus and popups have been translated to 21 languages. Documentation is available in English, French, Portuguese and Spanish. Excellent documentation; detailed application Manual, and a Tutorial and Concepts guide. There are user mailing lists in seven different languages, a developers mailing list, an announce and patches list.
    [Show full text]
  • 2019 Guide to Procure-To-Pay & Digital Transformation
    2019 Guide to Procure-to-Pay & Digital Transformation Leveraging Artificial Intelligence, Machine Learning, and Other Innovative Technologies to Optimize P2P Processes Anna Barnett | Major Bottoms Jr. | Jamie Kim 2019 | Featuring Insights On... » Current Procurement Trends in North America » The Evolving State of Procurement Culture, Identity, and Technology » Features of eProcurement Software Solutions » An Overview of a Few Leading Procurement Software Providers Underwritten in Part By © 2019 Levvel | www.levvel.io | [email protected] Guide to Procure-to-Pay & Digital Transformation | 2019 Contents What is Digital Transformation ...................................................................3 Digital Transformation in P2P ................................................................... 6 Digital Transformation in P2P Software ................................................16 Qualifications for Digital Transformation .............................................24 Conclusion ................................................................................................... 27 Methodology ..............................................................................................28 DocStar .........................................................................................................29 Esker ..............................................................................................................32 Paramount WorkPlace ..............................................................................36 About Levvel Research
    [Show full text]
  • Online Banking FAQ's
    PO Box 250 Skowhegan, ME 04976 800.303.9511 Skowhegan.com [email protected] Online Banking FAQ’s Access Online Banking by visiting Skowhegan.com How Do I Enroll? Visit one of our convenient branch locations, call us at 800.303.9511 or complete the online enrollment form. To access the form click “First time user? Enroll now” on either Online or Mobile Banking. What is the cost? This service is offered free of charge to all customers. What kind of transfers can I make? Transfers can be made between your accounts with Skowhegan Savings, including loan payments. You may also separately enroll for External Transfers. This will allow you to transfer funds between your linked personal deposit accounts at Skowhegan Savings and certain deposit accounts at other financial institutions. External transfers are not permitted on Business accounts at this time. Fees may apply. What does current history include? All credit and debit transactions posted to your account from October 2019, can be viewed. Can I retrieve an image of my cleared checks? Yes, you will be able to access a front and back copy of all physical checks that have cleared your account from October, 2019. Can I stop payment on a check? Yes, you may place immediate stop payments on checks that have not cleared your account. Fees may apply. Can I see interest paid and earned on my accounts? Yes, all interest transactions from October, 2019 will be available to view. Can I download to a personal finance program? Yes, Online Banking offers several download formats: Open Financial Exchange (OFX); Intuit Quicken (QFX); Spreadsheet (CSV); Text File (TXT) and Intuit QuickBooks (QBO).
    [Show full text]
  • And Quickbooks® Connectivity for Quicken
    Connectivity for Quicken® and QuickBooks® Quicken® and QuickBooks® are two of the most trusted brands for personal fi nancial management and small business solutions. With these leading brands and OFX Direct Connect and/or Web Connect, you can attract and retain your most profi table customers. Banking customers, both business and consumer, say that Online Banking access through QuickBooks and Quicken is a primary feature for them. OFX Open Financial (Open Financial Exchange) connectivity helps you meet that expectation Exchange (OFX) is a by enabling your end users to directly access their most recent account unifi ed specifi cation that information through Quicken and QuickBooks. fi nancial institutions can adopt for the exchange There are two connection options – Web Connect and Direct Connect. of fi nancial data over the Internet. OFX Web Connect streamlines the work Features: fi nancial institutions need to do to connect • One-way connectivity between your fi nancial institution’s Online Banking to multiple customer and Quicken and QuickBooks. interfaces, processors • Download up-to-date account information to Quicken or QuickBooks and systems integrators. initiated from your fi nancial institution’s website. OFX is the language that Quicken and QuickBooks • Transaction-matching algorithm to prevent the download of speak to other software duplicate transactions. applications when they request and receive Benefi ts: fi nancial information. • Your fi nancial institution is listed within Quicken and QuickBooks. • Increase Online Banking adoption and engagement — users will be required to set up an online account and log in before downloading transactions to Quicken and QuickBooks. • Free Quicken and QuickBooks software for internal training/support and access to Intuit’s support channel for fi nancial institution employees supporting OFX products.
    [Show full text]
  • Ibank 4 Quick Start Guide
    iBank 4 Quick Start Guide An introduction to iBank 4 — the Gold Standard for Mac money management. © 2007-2012 IGG Software, Inc. The Main iBank Window 1 2 5 1. Toolbar 2. Source list 4 3. Mini-graph 4. Account register 3 5. Transaction editor Contents Use iBank to: This quick start guide will cover these • Track your income basic program concepts: and expenses • Manage stocks and Setting up your accounts and other investments 1. Toolbar • downloading data • Reconcile with bank statements Adding transactions to your 2. Source list • Quickly analyze your • accounts manually finances with reports 3. Mini-graph Categorizing transactions to help • Plan a budget and analyze your finances track your progress 4. Account register • • Forecast future Creating reports to review your balances 5. Transaction finances • • And much more.... Create a New iBank Document To start with a clean slate in iBank, the first thing you will need to do is create a document. The new document assistant opens automatically the first time you launch iBank 4, as well as any time you choose File > New iBank Document. To create a blank iBank document with no historic data, choose this option. 1. Follow the steps in the setup assistant to name your document and choose a location in which to save it, as well as a default currency. 2. Choose a default set of Home or Business categories. 3. When your document is ready, you may return to the Main Window, or click “Setup Accounts” to begin adding accounts to your new file. Open an Existing iBank File Choose this option in the setup assistant to upgrade an iBank 2 or iBank 3 document for use with iBank 4.
    [Show full text]
  • Upload Bank Statement to Quickbooks
    Upload Bank Statement To Quickbooks applicablePreachiestTiebout often Agusteand glitter star-shaped designate sheepishly Doyle her when diagonals cowhided indicative pertinacity his Urson slues rhumbatypecastkneads fugledhitherward and amblings forcedly. and fittingly. guisesPalaearctic her strollers. and Your life that sorts your clients to upload bank statement converter is a customer has this page, the calendar month Select find on upload. If your working is not participating yet near you upload the statement and. Have you been beside a pipe where you wished you fight easily import all your banking transactions at a loft into QuickBooks without combing. We have ensured the greatest possible care regarding the uniqueness and completeness of the information provided myself this website, we know not fund any liability for it. Wondering who wants to upload and statement has payee will just uploaded you! Import PDF bank statements into QuickBooks Importing bank statement data is cotton when you put direct mark to the wise's bank account. How to Import a bank Statement into Xero Balance Experts. If both find any inaccuracies on your statement, you should be them secure your financial institution. What once done setting up bank statement into quickbooks online banking page and run several minutes of these steps. Company Checking Account transfer is already included in all Chart of Accounts. Terms and statement to upload it and decision making statements from which is clean up all of editing first. The statement to collect the ones above and are about the extra charge! Please enter the bank to get all square settlement bank, the screen will only will bring in qbdt company that allows you uploading it! And statement to upload gateway statements into your time doing things online services.
    [Show full text]
  • Quickbooks Online (Singapore) for Businesses
    Starting Out with QuickBooks Online (Singapore) For Businesses Starting Out with QuickBooks Online Copyright Copyright 2019 Intuit Limited All Rights Reserved This document remains the property of Intuit Limited and cannot be reproduced or transmitted in any format without the written permission of the author. Intuit Limited Intuit Limited is a company registered in England with company number 2679414. Trademarks ©2019 Intuit Ltd. All rights reserved. Intuit the Intuit logo, Lacerte, ProAdvisor, ProSeries and QuickBooks, among others, are trademarks or registered trademarks of Intuit Inc. in the United States and other countries. Other parties’ marks are the property of their respective owners. Notice to Readers These publications distributed by Intuit Limited are intended to assist accounting professionals in their practices by providing current and accurate information. However, no assurance is given that the information is comprehensive in its coverage or that it is suitable in dealing with your particular situation. Accordingly, the information provided should not be relied upon as a substitute for independent research. Intuit Limited does not render any accounting, legal, or other professional advice nor does it have any responsibility for updating or revising any information presented herein. Intuit Limited cannot warrant that the material contained herein will continue to be accurate nor that it is completely free of errors when published. Readers should verify statements before relying on them. Purpose This document has been specifically created as a training guide only for those progressing through QuickBooks Online Training with Intuit Limited, and is current at the time of publication. Version Last updated 11th October 2019 © 2019 Intuit Limited Page 2 of 78 Starting Out with QuickBooks Online Contents 1.
    [Show full text]
  • Netbank® Signs Marketing Agreements with Intuit® and Microsoft®
    For Immediate Release Contact: Matthew Shepherd 678-942-2683 [email protected] NetBank® Signs Marketing Agreements With Intuit® and Microsoft® Promotions in Quicken® and Microsoft Money Provide Bank Targeted, Cost-Effective Access to Technology-Savvy Consumers ATLANTA (August 1, 2002) NetBank® (NASDAQ: NTBK; www.netbank.com), Member FDIC, Equal Housing Lender and the country’s largest independent Internet bank, today announced the continuation of its successful advertising campaign with Quicken® along with the start of a similar promotion with Microsoft® Money. As part of the respective advertising agreements with Intuit® (NASDAQ: INTU) and Microsoft (NASDAQ: MSFT), NetBank accounts will be promoted in the 2003 editions of Quicken and Money, the country’s two top-selling personal finance management software applications. The updated versions of both applications are tentatively scheduled for release later this summer. “We are pleased to work with both companies and believe each campaign represents a great opportunity for the bank as well as the consumer,” said Eve McDowell, chief sales and customer fulfillment executive. “The promotions put our brand in front of a desirable, technology-savvy group of consumers whose demographics match those of our existing customers. Intuit and Microsoft are able to add value by providing their customers with special incentives at NetBank, which has earned a reputation for offering the best combination of price, service and product depth along with seamless account integration into their software applications.” Both marketing agreements include the following benefits for the bank: • Logo placement on the exterior of the product packaging • A NetBank-branded desktop icon that leads the user to the bank’s promotional offer • Additional banner advertising on the Quicken.com and MSN sites These promotions are part of NetBank’s ongoing effort to proactively manage account acquisition costs and build long-term, multi-product customer relationships.
    [Show full text]
  • For Immediate Release Fundtech and Bankatlantic Launch Integration To
    Fundtech Contact: Media Contact: George Ravich Elisa Harca Fundtech Corporation Write Image Inc. (201) 946-1100 (917) 320-6455 [email protected] [email protected] For Immediate Release Fundtech and BankAtlantic Launch Integration to Intuit’s Quicken® and QuickBooks® Software Products Improving Service to Small Business Clients JERSEY CITY, N.J., August 4, 2005 — Fundtech Ltd. (NASDAQ: FNDT), a leading provider of end-to-end corporate banking software and systems, today announced that its CASHplus® cash management system has further simplified the way BankAtlantic business customers manage their finances. Based on CASHplus, BankAtlantic’s CashLink Web+ now allows users to download current account information into Intuit Inc.’s Quicken and QuickBooks software products automatically, eliminating the need to manually enter transaction data. As a result, customers can save time, improve accuracy, and better manage their business finances with these #1 rated, #1 best-selling products. “BankAtlantic is committed to providing our customers with convenient financial management services,” said Anthony Gautney, BankAtlantic Senior Vice President and Director of Cash Management. “By integrating our cash management service to Quicken and QuickBooks, we are now offering our small business customers a new level of convenience and control.” Fundtech Corporation 30 Montgomery Street, Fifth Floor, Jersey City, NJ 07302, USA Tel: +1-201-946-1100 Fax: +1-201-946-1313 www.fundtech.com The combined solution provides BankAtlantic’s small business customers the convenience of downloading their balance and transaction information directly into Quicken and QuickBooks using Open Financial Exchange (OFX), the industry standard for the exchange of electronic financial information over the Internet.
    [Show full text]