Topic: web api bug

It looks like the command to return all data isn't working.

http://www.ofxhome.com/api.php?dump=yes

Anyone else using this?

Re: web api bug

This is fixed now. The api.php was a version out of date.

Re: web api bug

Thanks!

Re: web api bug

The xml that's returned from the dump api doesn't have a root element.  Having root element would make it a valid document and easier to parse (in c# at least). 

Could you add a root element?

Here's what is returned now:

<?xml version="1.0" encoding="utf-8"?>
<institution id="421">
</institution>
<institution id="422">
</institution>

It would be nice to have something like this:

<?xml version="1.0" encoding="utf-8"?>
<institutionList>
   <institution id="421">
   </institution>
   <institution id="422">
   </institution>
</institutionList>

Re: web api bug

Also one of the banks has an FID set to BB&T which is invalid XML, should be BB&amp;T.