<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Gu</title>
    <description>The latest articles on DEV Community by Gu (@ink_gu).</description>
    <link>https://dev.to/ink_gu</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4076980%2Fd3fc766a-8784-4432-a531-6f2d4bf242ca.png</url>
      <title>DEV Community: Gu</title>
      <link>https://dev.to/ink_gu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ink_gu"/>
    <language>en</language>
    <item>
      <title>Notes from getting QuickBooks to accept a generated .qbo file</title>
      <dc:creator>Gu</dc:creator>
      <pubDate>Fri, 14 Aug 2026 03:24:14 +0000</pubDate>
      <link>https://dev.to/ink_gu/notes-from-getting-quickbooks-to-accept-a-generated-qbo-file-3k5i</link>
      <guid>https://dev.to/ink_gu/notes-from-getting-quickbooks-to-accept-a-generated-qbo-file-3k5i</guid>
      <description>&lt;p&gt;I'm building a small tool that converts bank CSV files into .qbo files for QuickBooks (&lt;a href="https://qbofile.com" rel="noopener noreferrer"&gt;qbofile.com&lt;/a&gt;). When a generated file is wrong, QuickBooks rejects it with vague errors and the OFX spec doesn't tell you what QuickBooks actually checks. So I ran some experiments. Notes below, in case someone else hits the same wall.&lt;/p&gt;

&lt;h2&gt;
  
  
  The file is not XML
&lt;/h2&gt;

&lt;p&gt;.qbo is Intuit's version of OFX 1.0.2, which is SGML. Leaf tags have no closing tag:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight xml"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;TRNAMT&amp;gt;&lt;/span&gt;-42.50
&lt;span class="nt"&gt;&amp;lt;FITID&amp;gt;&lt;/span&gt;8f3a2b...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Only aggregate tags close. The file also needs a 9-line key:value header, then one blank line, then the body. Line endings are CRLF. My first bug was closing every tag like XML.&lt;/p&gt;

&lt;h2&gt;
  
  
  "Missing bid data" means one tag: INTU.BID
&lt;/h2&gt;

&lt;p&gt;QuickBooks checks &lt;code&gt;&amp;lt;INTU.BID&amp;gt;&lt;/code&gt; against an internal list of banks that pay Intuit for Web Connect. I tested three variants on QuickBooks Desktop for Mac 2024:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Variant&lt;/th&gt;
&lt;th&gt;Result&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;No &lt;code&gt;&amp;lt;FI&amp;gt;&lt;/code&gt; block, no &lt;code&gt;&amp;lt;INTU.BID&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Rejected: "Missing bid data"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Only &lt;code&gt;&amp;lt;INTU.BID&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Accepted&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;&amp;lt;FI&amp;gt;&lt;/code&gt; block + &lt;code&gt;&amp;lt;INTU.BID&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Accepted&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;So the whole &lt;code&gt;&amp;lt;FI&amp;gt;&lt;/code&gt; block (bank name, org id) can be dropped, but INTU.BID cannot. I have only tested the Mac version. If you know whether Windows versions behave the same, I'd like to hear.&lt;/p&gt;

&lt;h2&gt;
  
  
  FITID decides duplicates
&lt;/h2&gt;

&lt;p&gt;QuickBooks dedupes on FITID, not on date + amount. If a converter generates random FITIDs, re-importing an overlapping date range creates duplicate transactions. I hash account + date + amount + description, so the same transaction always gets the same FITID. Credit card statement cycles never match calendar months, so overlapping imports happen more often than I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  QuickBooks cannot export .qbo
&lt;/h2&gt;

&lt;p&gt;This one surprised me. No version of QuickBooks can produce a .qbo file. The format only goes one direction, from bank to QuickBooks. Every .qbo file in the world came from a bank's download button or from a converter.&lt;/p&gt;




&lt;p&gt;That's what I have so far. The tool is free for single files and runs fully in the browser, nothing gets uploaded. I have only tested against QuickBooks Desktop — if you use QuickBooks Online, I'm interested in what its importer accepts.&lt;/p&gt;

</description>
      <category>quickbooks</category>
      <category>fintech</category>
      <category>webdev</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
