Developers Program

Need to add 'Bank deposit' as payment method for some eBay sites

Published: June 26 2006, 4:49:00 PMยทUpdated: July 31 2022, 9:15:00 PM

Products

Question

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"?

Answer

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>
How well did this answer your question?