Method name
https://invoice.zoho.com/api/settings/paymentterms/create
Method type
POST
API description
Adds a payment term in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, XMLString, apikey
Sample Request
<PaymentTerm> <Days>30</Days> <!-- Mandatory --> </PaymentTerm>
Sample Response
<Response status="1"> <PaymentTerm uri="/api/settings/paymentterms/4000000038001"> <PaymentTermsID>4000000038001</PaymentTermsID> <Days>30</Days> </PaymentTerm> </Response>
Method name
https://invoice.zoho.com/api/settings/paymentterms/delete/<PaymentTermsID>
Method type
POST
API description
Deletes a payment term
Parameters to be passed
authtoken, scope, apikey
Sample Request
<Response status="1">
Method name
https://invoice.zoho.com/api/settings/paymentterms
Method type
GET
API description
View the list of payment terms in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"/> <PaymentTerms uri="/api/settings/paymentterms/"> <PaymentTerm> <PaymentTermsID>4000000000143</PaymentTermsID> <Days>15</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000145</PaymentTermsID> <Days>30</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000147</PaymentTermsID> <Days>45</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000149</PaymentTermsID> <Days>60</Days> </PaymentTerm> </PaymentTerms> </Response>
Method name
https://invoice.zoho.com/api/view/settings/paymentterms
Method type
GET
API description
View the list of formatted payment terms in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <PaymentTerms uri="/api/view/settings/paymentterms/"> <PaymentTerm> <PaymentTermsID>4000000000143</PaymentTermsID> <Days>Net 15</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000145</PaymentTermsID> <Days>Net 30</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000147</PaymentTermsID> <Days>Net 45</Days> </PaymentTerm> <PaymentTerm> <PaymentTermsID>4000000000149</PaymentTermsID> <Days>Net 60</Days> </PaymentTerm> </PaymentTerms> </Response>
Method name
https://invoice.zoho.com/api/settings/taxes
Method type
GET
API description
View the list of taxes in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"/> <Taxes uri="/api/settings/taxes/"> <Tax> <TaxID>4000000007003</TaxID> <TaxName>VAT</TaxName> <TaxPercentage>17.500000</TaxPercentage> <TaxType>1</TaxType> <!-- 0 -> non-stacked 1 -> stacked --> </Tax> <Tax> <TaxID>4000000017003</TaxID> <TaxName>PST</TaxName> <TaxPercentage>15.000000</TaxPercentage> <TaxType>0</TaxType> </Tax> </Taxes> </Response>
Method name
https://invoice.zoho.com/api/view/settings/taxes
Method type
GET
API description
View the list of formatted taxes in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Response
<Response status="1"/> <Taxes uri="/api/settings/taxes/"> <Tax> <TaxID>4000000007003</TaxID> <TaxName>VAT</TaxName> <TaxPercentage>17.500000</TaxPercentage> <TaxType>Stacked</TaxType> </Tax> <Tax> <TaxID>4000000017003</TaxID> <TaxName>PST</TaxName> <TaxPercentage>15.000000</TaxPercentage> <TaxType>Non-stacked</TaxType> </Tax> </Taxes> </Response>
Method name
https://invoice.zoho.com/api/settings/currencies/create
Method type
POST
API description
Adds a new currency in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, XMLString, apikey
Sample Request
<Currency> <CurrencyCode>EUR</CurrencyCode> <!-- Mandatory - Ex: AUD,USD,INR,EUR --> <CurrencySymbol>�</CurrencySymbol> <!-- If not given, CurrencyCode will be taken --> <DecimalPlace>2</DecimalPlace> <!-- If not given, default value 2 is taken, Allowed values: 0,2,3 --> <CurrencyFormat>1,234,567.89</CurrencyFormat> <!-- Refer the following table for the allowed currency formats for each decimal place --> </Currency>
| Decimal Place | Allowed Currency Formats |
|---|---|
| 0 | 1,234,567 1.234.567 1 234 567 |
| 2 | 1,234,567.89 1.234.567,89 1 234 567,89 |
| 3 | 1,234,567.899 1.234.567,899 1 234 567,899 |
Sample Response
<Response status="1"/> <Currency uri="/api/settings/currencies/4000000033001"> <CurrencyID>4000000033001</CurrencyID> <CurrencyCode>EUR</CurrencyCode> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> </Currency> </Response>
Method name
https://invoice.zoho.com/api/settings/currencies/update
Method type
POST
API description
Update an existing currency in your Zoho Invoice account.
You can change the values of the following fields of a currency
- CurrencySymbol
- DecimalPlace
- CurrencyFormat
Parameters to be passed
authtoken, scope, XMLString, apikey
Sample Request
<Currency> <CurrencyID>4000000033001</CurrencyID> <!-- Mandatory --> <CurrencyFormat>1,234,567.89</CurrencyFormat> <!-- Changing the currency format --> </Currency>
Sample Response
<Response status="1"> <Currency uri="/api/settings/currencies/4000000033001"> <CurrencyID>4000000033001</CurrencyID> <CurrencyCode>EUR</CurrencyCode> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1 234 567,89</CurrencyFormat> </Currency> </Response>
Method name
https://invoice.zoho.com/api/settings/currencies/delete/<CurrencyID>
Method type
POST
API description
Deletes an existing currency
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1">
Method name
https://invoice.zoho.com/api/settings/currencies
Method type
GET
API description
View the list of currencies in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <Currencies uri="/api/settings/currencies/"> <Currency> <CurrencyID>4000000000095</CurrencyID> <CurrencyCode>INR</CurrencyCode> <CurrencySymbol>Rs.</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>true</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000097</CurrencyID> <CurrencyCode>CAD</CurrencyCode> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1.234.567,89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000099</CurrencyID> <CurrencyCode>GBP</CurrencyCode> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000101</CurrencyID> <CurrencyCode>AUD</CurrencyCode> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000105</CurrencyID> <CurrencyCode>EUR</CurrencyCode> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1.234.567,89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000107</CurrencyID> <CurrencyCode>JPY</CurrencyCode> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>0</DecimalPlace> <CurrencyFormat>1,234,567</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000109</CurrencyID> <CurrencyCode>CNY</CurrencyCode> <CurrencySymbol>CNY</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000129</CurrencyID> <CurrencyCode>USD</CurrencyCode> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000026001</CurrencyID> <CurrencyCode>AMD</CurrencyCode> <CurrencySymbol>AMD</CurrencySymbol> <DecimalPlace>3</DecimalPlace> <CurrencyFormat>1,234,567.899</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> </Currencies> </Response>
Method name
https://invoice.zoho.com/api/view/settings/currencies
Method type
GET
API description
View the list of formatted currencies in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <Currencies uri="/api/view/settings/currencies/"> <Currency> <CurrencyID>4000000000095</CurrencyID> <CurrencyCode>INR</CurrencyCode> <CurrencyName>INR- Indian Rupee</CurrencyName> <CurrencySymbol>Rs.</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>true</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000097</CurrencyID> <CurrencyCode>CAD</CurrencyCode> <CurrencyName>CAD- Canadian Dollar</CurrencyName> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1.234.567,89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000099</CurrencyID> <CurrencyCode>GBP</CurrencyCode> <CurrencyName>GBP- Pound Sterling</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000101</CurrencyID> <CurrencyCode>AUD</CurrencyCode> <CurrencyName>AUD- Australian Dollar</CurrencyName> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000105</CurrencyID> <CurrencyCode>EUR</CurrencyCode> <CurrencyName>EUR- Euro</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1.234.567,89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000107</CurrencyID> <CurrencyCode>JPY</CurrencyCode> <CurrencyName>JPY- Yen</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>0</DecimalPlace> <CurrencyFormat>1,234,567</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000109</CurrencyID> <CurrencyCode>CNY</CurrencyCode> <CurrencyName>CNY- Yuan Renminbi</CurrencyName> <CurrencySymbol>CNY</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000000129</CurrencyID> <CurrencyCode>USD</CurrencyCode> <CurrencyName>USD- US Dollar</CurrencyName> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> <Currency> <CurrencyID>4000000026001</CurrencyID> <CurrencyCode>AMD</CurrencyCode> <CurrencyName>AMD- Armenian Dram</CurrencyName> <CurrencySymbol>AMD</CurrencySymbol> <DecimalPlace>3</DecimalPlace> <CurrencyFormat>1,234,567.899</CurrencyFormat> <IsBaseCurrency>false</IsBaseCurrency> </Currency> </Currencies> </Response>
Method name
https://invoice.zoho.com/api/settings/currencies/all
Method type
GET
API description
View the list of all currencies supported in Zoho Invoice.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <Currencies uri="/api/settings/currencies/all"> <Currency> <CurrencyCode>AED</CurrencyCode> <CurrencyName>AED- UAE Dirham</CurrencyName> <CurrencySymbol>AED</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsAlreadyAdded>false</IsAlreadyAdded> <!-- The value will be "true" if the company has already added this currency in the currencysettings --> </Currency> <Currency> <CurrencyCode>AMD</CurrencyCode> <CurrencyName>AMD- Armenian Dram</CurrencyName> <CurrencySymbol>AMD</CurrencySymbol> <DecimalPlace>3</DecimalPlace> <CurrencyFormat>1,234,567.899</CurrencyFormat> <IsAlreadyAdded>true</IsAlreadyAdded> </Currency> <Currency> <CurrencyCode>ANG</CurrencyCode> <CurrencyName>ANG- Netherlands Antillian Guilder</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsAlreadyAdded>false</IsAlreadyAdded> </Currency> <Currency> <CurrencyCode>AUD</CurrencyCode> <CurrencyName>AUD- Australian Dollar</CurrencyName> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsAlreadyAdded>true</IsAlreadyAdded> </Currency> <Currency> <CurrencyCode>GBP</CurrencyCode> <CurrencyName>GBP- Pound Sterling</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsAlreadyAdded>true</IsAlreadyAdded> </Currency> <Currency> <CurrencyCode>JPY</CurrencyCode> <CurrencyName>JPY- Yen</CurrencyName> <CurrencySymbol>�</CurrencySymbol> <DecimalPlace>0</DecimalPlace> <CurrencyFormat>1,234,567</CurrencyFormat> <IsAlreadyAdded>false</IsAlreadyAdded> </Currency> <Currency> <CurrencyCode>USD</CurrencyCode> <CurrencyName>USD- US Dollar</CurrencyName> <CurrencySymbol>$</CurrencySymbol> <DecimalPlace>2</DecimalPlace> <CurrencyFormat>1,234,567.89</CurrencyFormat> <IsAlreadyAdded>true</IsAlreadyAdded> </Currency> </Currencies> </Response>
Method name
https://invoice.zoho.com/api/settings/latefees
Method type
GET
API description
View the list of late fees in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <LateFees uri="/api/settings/latefees/"> <LateFee> <LateFeeID>4000000007003</LateFeeID> <LateFeeName>Sample Late Fee 1</LateFeeName> <LateFeeType>2</LateFeeType> <!-- 1->Percentage of Invoice, 2->Flat Rate --> <LateFeeRate>20.000</LateFeeRate> <FrequencyType>3</FrequencyType> <!-- 1->Once,2->EveryDay,3->EveryWeek,4->Every Fortnight,5->EveryMonth --> </LateFee> <LateFee> <LateFeeID>4000000008001</LateFeeID> <LateFeeName>Sample Late Fee 2</LateFeeName> <LateFeeType>1</LateFeeType> <LateFeeRate>2.000</LateFeeRate> <FrequencyType>5</FrequencyType> </LateFee> <LateFee> <LateFeeID>4000000038003</LateFeeID> <LateFeeName>Sample Late Fee 3</LateFeeName> <LateFeeType>2</LateFeeType> <LateFeeRate>10.000</LateFeeRate> <FrequencyType>2</FrequencyType> </LateFee> </LateFees> </Response>
Method name
https://invoice.zoho.com/api/view/settings/latefees
Method type
GET
API description
View the list of formatted late fees in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <LateFees uri="/api/view/settings/latefees/"> <LateFee> <LateFeeID>4000000007003</LateFeeID> <LateFeeName>Sample Late Fee 1</LateFeeName> <LateFeeType>Flat Rate</LateFeeType> <LateFeeRate>20.000</LateFeeRate> <FrequencyType>Every Week</FrequencyType> </LateFee> <LateFee> <LateFeeID>4000000008001</LateFeeID> <LateFeeName>Sample Late Fee 2</LateFeeName> <LateFeeType>Percentage</LateFeeType> <LateFeeRate>2.000</LateFeeRate> <FrequencyType>Every Month</FrequencyType> </LateFee> <LateFee> <LateFeeID>4000000038003</LateFeeID> <LateFeeName>Sample Late Fee 3</LateFeeName> <LateFeeType>Flat Rate</LateFeeType> <LateFeeRate>10.000</LateFeeRate> <FrequencyType>Everyday</FrequencyType> </LateFee> </LateFees> </Response>
Method name
https://invoice.zoho.com/api/settings/invoices/termsandnotes/update
Method type
POST
API description
Updates Terms and Notes for Invoices in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, XMLString, apikey
Sample Request
<InvoiceTermsAndNotes> <Notes>Thanks for your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </InvoiceTermsAndNotes>
Sample Response
<Response status="1"> <InvoiceTermsAndNotes uri="/api/settings/invoices/termsandnotes/update/"> <Notes>Thanks for your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </InvoiceTermsAndNotes> </Response>
Method name
https://invoice.zoho.com/api/settings/estimates/termsandnotes/update
Method type
POST
API description
Updates Terms and Notes for Estimates in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, XMLString, apikey
Sample Request
<EstimateTermsAndNotes> <Notes>Thanks for your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </EstimateTermsAndNotes>
Sample Response
<Response status="1"> <EstimateTermsAndNotes uri="/api/settings/estimates/termsandnotes/update/"> <Notes>Looking forward to your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </EstimateTermsAndNotes> </Response>
Method name
https://invoice.zoho.com/api/settings/invoices/termsandnotes
Method type
GET
API description
View the Terms and Notes for Invoices in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <InvoiceTermsAndNotes uri="/api/settings/invoices/termsandnotes/"> <Notes>Thanks for your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </InvoiceTermsAndNotes> </Response>
Method name
https://invoice.zoho.com/api/settings/estimates/termsandnotes
Method type
GET
API description
View the Terms and Notes for Estimates in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"> <EstimateTermsAndNotes uri="/api/settings/estimates/termsandnotes/"> <Notes>Looking forward to your business</Notes> <Terms> In addition to all other terms and conditions of this Agreement, you shall not: (i) transfer or otherwise make available to any third party the Services; (ii) provide any service based on the Services without prior written permission; (iii) use the third party links to sites without agreeing to their website terms and conditions; (iv) post links to third party sites or use their logo, company name, etc. without their prior written permission; or (v) use the Services for spamming and other illegal purposes. </Terms> </EstimateTermsAndNotes> </Response>
Method name
https://invoice.zoho.com/api/settings/invoices
Method type
GET
API description
Get the boolean value of autogenerate invoice number settings in your Zoho Invoice account.
Invoice Number field in create invoice page should be disabled if IsAutoGenerateInvoiceNumber is true.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"/> <InvoiceSettings uri="/api/settings/invoices/"> <IsAutoGenerateInvoiceNumber>true</IsAutoGenerateInvoiceNumber> </InvoiceSettings> </Response>
Method name
https://invoice.zoho.com/api/settings/estimates
Method type
GET
API description
Get the boolean value of autogenerate estimate number settings in your Zoho Invoice account.
Estimate Number field in create estimate page should be disabled if IsAutoGenerateEstimateNumber is true.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"/> <EstimateSettings uri="/api/settings/estimates/"> <IsAutoGenerateEstimateNumber>false</IsAutoGenerateEstimateNumber> </EstimateSettings > </Response>
Method name
https://invoice.zoho.com/api/settings/paymentgateways
Method type
GET
API description
Get online payment settings along with the payment gateway service providers configured in your Zoho Invoice account.
Parameters to be passed
authtoken, scope, apikey
Sample Response
<Response status="1"/> <PaymentGateways uri="/api/settings/paymentgateways/"> <PayPal> <PayPalEMailAddress>payment@samplemail.com</PayPalEMailAddress> <PayPalMethod>1</PayPalMethod> <!-- 1 -> PayPal Standard, 2 -> PayPal Business Payments --> </PayPal> <Authorize.Net> <Authorize.NetLoginID>xxxxxxxx</Authorize.NetLoginID> </Authorize.Net> <GoogleCheckout> <GoogleMerchantID>xxxxxxxx</GoogleMerchantID> </GoogleCheckout> <Notifications> <IntimateMe>true</IntimateMe> <SendAcknowledgement>true</SendAcknowledgement> </Notifications> </PaymentGateways> </Response>