Created
March 25, 2010 09:04
-
-
Save dcparker/343345 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
action: listcustomers | |
<QBXML> | |
<QBXMLMsgsRq onError="stopOnError"> | |
<CustomerQueryRq> | |
<MaxReturned>params[:limit]</MaxReturned> | |
</CustomerQueryRq> | |
</QBXMLMsgsRq> | |
</QBXML> | |
action: show | |
<QBXML> | |
<QBXMLMsgsRq onError="stopOnError"> | |
<ListDisplayModRq> | |
<ListDisplayModType>params[:type]</ListDisplayModType> | |
<ListID>params[:id]</ListID> | |
</ListDisplayModRq> | |
</QBXMLMsgsRq> | |
</QBXML> | |
action: show_new | |
<QBXML> | |
<QBXMLMsgsRq onError="stopOnError"> | |
<ListDisplayAddRq> | |
<ListDisplayAddType>params[:type]</ListDisplayModType> | |
</ListDisplayAddRq> | |
</QBXMLMsgsRq> | |
</QBXML> | |
action: createcustomer | |
<QBXML> | |
<QBXMLMsgsRq onError="stopOnError"> | |
<CustomerAddRq> | |
<CustomerAdd> | |
<Name>params[:firstname] params[:lastname]</Name> | |
<FirstName>params[:firstname]</FirstName> | |
<LastName>params[:lastname]</LastName> | |
</CustomerAdd> | |
</CustomerAddRq> | |
</QBXMLMsgsRq> | |
</QBXML> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment