Ability to get information about sales in xml with RESTful access protocol would be great.
I.e. GET via HTTPS:
GET /va/sales/detail?sale_id=1234567890
Host: www.2checkout.com
Accept: application/xml
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
would return something like
{sale}
{id}1234567890{/id}
{amount currency=”USD”}123.00{/amount}
{method channel=”CC”}
{type}Visa{/type}
{card}123456…90{/card}
{avs}XX{/avs}
{cvv}P{/cvv}
{/method}
{customer}
{id}9876543210{/id}
{name}John Doe{/name}
{address}
{street}1600 Amphitheatre Parkway{/street}
{city}Mountain View{/city}
{state}CA{/state}
{zip}94043{/zip}
{country}USA{/country}
{/address}
{phone}+1(555)12-3456{phone}
{email}jdoe@example.com{/email}
…
{/sale}
Note: angle brackets should be above in example…
Request is not limited to sales only, products, payments, etc. would be great as well, but sales are first priority.