Skip to content

Instantly share code, notes, and snippets.

@AntonNguyen
Created June 12, 2013 18:25
Show Gist options
  • Save AntonNguyen/5767806 to your computer and use it in GitHub Desktop.
Save AntonNguyen/5767806 to your computer and use it in GitHub Desktop.
<!---- Adding Paypal ----->
<request method="invoice.create">
<invoice>
<client_id>1</client_id>
<gateways>
<gateway>
<name>Paypal</name>
</gateway>
</gateways>
</invoice>
</request>
<!---- Adding Paypal and Authorize.net ----->
<request method="invoice.create">
<invoice>
<client_id>1</client_id>
<gateways>
<gateway>
<name>Paypal</name>
</gateway>
<gateway>
<name>Authorize.net</name>
</gateway>
</gateways>
</invoice>
</request>
<!--- Disabling all gateways --->
<request method="invoice.create">
<invoice>
<client_id>1</client_id>
<gateways/>
</invoice>
</request>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment