Find the answer to your question
Advanced Search
We like to provide the payment option of "Bank Deposit" in eBay Australia and I do not see BuyerPaymentMethodCodeType that would support this. Also, assuming it is possible to specify this payment method, how would we submit the information for the selection of "Show buyers your bank account number in Checkout"?
MoneyXferAccepted and MoneyXferAcceptedInCheckout are the payment methods you are looking for.
Here is the description for these two methods:
-- MoneyXferAccepted : Direct transfer of money (a.k.a, CIP in Germany).
-- MoneyXferAcceptedInCheckout: If the seller has bank account information on file, and MoneyXferAcceptedInCheckout = true, then the bank account information will be displayed in Checkout (a.k.a., CIP+ in Germany). Applicable only to certain global eBay sites. See the "International Differences Overview" in the eBay Web Services Guide.
You need to specify both MoneyXferAccepted and MoneyXferAcceptedInCheckout payment methods in your AddItem call as :
<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<DetailLevel>ReturnAll</DetailLevel>
<DetailLevel>ItemReturnDescription</DetailLevel>
<Version>467</Version>
<ErrorLanguage>en_US</ErrorLanguage>
<Item>
<AutoPay>false</AutoPay>
<Country>DE</Country>
<Currency>EUR</Currency>
<Description>Test Description</Description>
<ListingDuration>Days_7</ListingDuration>
<ListingType>FixedPriceItem</ListingType>
<Location>San Jose, CA</Location>
<PaymentMethods>MoneyXferAccepted</PaymentMethods>
<PaymentMethods>MoneyXferAcceptedInCheckout</PaymentMethods>
<Quantity>1</Quantity>
<StartPrice>10</StartPrice>
<Title>Test Title</Title>
<PrimaryCategory>
<CategoryID>1463</CategoryID>
</PrimaryCategory>
<PaymentDetails>
<DaysToFullPayment><![CDATA[14]]></DaysToFullPayment>
<HoursToDeposit><![CDATA[24]]></HoursToDeposit>
</PaymentDetails>
</Item>
<RequesterCredentials>
<eBayAuthToken>YOUR TOKEN</eBayAuthToken>
</RequesterCredentials>
</AddItemRequest>