Developers Program

What eBay payment methods equate to "Bank Deposit" and "Bank Deposit Express" in Australia?

Published: October 11 2007, 9:46:00 PMยทUpdated: August 04 2022, 5:28:28 AM

Products

Question

What eBay payment methods equate to 'Bank Deposit" and "Bank Deposit Express" in Australia?

Answer

The PaymentMethods element is a repeatable element (array) in the Item container.
This means more than one payment method can be indicated for an item.
Simply put all of the payment methods available for an item together in the Item container of the AddItem call.
For example, here is an AddItem call that offers four payment methods for the item being listed:

<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>1267</Version>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Item>
...
<PaymentMethods>MoneyXferAccepted</PaymentMethods>
<PaymentMethods>MoneyXferAcceptedInCheckout</PaymentMethods>
<PaymentMethods>VisaMC</PaymentMethods>
<PaymentMethods>PayPal</PaymentMethods>
<PayPalEmailAddress>mypaypalemail@ebay.com</PayPalEmailAddress>
...
</Item>
<RequesterCredentials>
<eBayAuthToken>AuthToken</eBayAuthToken>
</RequesterCredentials>
<AddItemRequest> Additional Resources
How well did this answer your question?