SOAP/WSDL Example
DevelopingPOST
https://api.sandbox.ebay.com/wsapiWebService Usage Tips
:::info
Apidog needs to be upgraded to version 2.1.31
or higher.
:::
- Manually set the Header
Content-Type
value totext/xml; charset=utf-8
orapplication/soap+xml
(depending on the actual situation). - Set the Body format to
xml
. - The format of the returned response content is
XML
.
Request
Query Params
siteid
string
required
Example:
0
routing
string
required
Example:
beta
callname
string
required
Example:
GeteBayOfficialTime
client
string
required
Example:
java
version
string
required
Example:
423
appid
string
required
Example:
INDEPENDENV14L9185124FNLW855JL
Header Params
Content-Type
string
required
Example:
application/soap+xml
Body Params application/xml
object {0}
Example
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<ebl:RequesterCredentials soapenv:mustUnderstand="0" xmlns:ebl="urn:ebay:apis:eBLBaseComponents">
<ebl:eBayAuthToken xmlns:ebl="urn:ebay:apis:eBLBaseComponents">token</ebl:eBayAuthToken>
</ebl:RequesterCredentials>
</soapenv:Header>
<soapenv:Body>
<GeteBayOfficialTimeRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<DetailLevel>ReturnAll</DetailLevel>
<Version>423</Version>
</GeteBayOfficialTimeRequest>
</soapenv:Body>
</soapenv:Envelope>
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : XMLapplication/xml
Data Schema
object {0}
Example
<?xml version="1.0" encoding="UTF-8"?>
<root/>
Last modified: 2 months ago