Home
Find the answer to your question
How can I easily debug and troubleshoot API issues?
This is Part 2 of the video series on how to use SOAPUI to troubleshoot eBay API issues. In this episode, we explain how to make example XML and SOAP calls into the eBay Trading API
SOAP Example:
https://api.ebay.com/wsapi?callname=GeteBayOfficialTime&siteid=1
<?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>
<RequesterCredentials soapenv:mustUnderstand="0"
xmlns="urn:ebay:apis:eBLBaseComponents">
<eBayAuthToken>****</eBayAuthToken>
</RequesterCredentials>
</soapenv:Header>
<soapenv:Body>
<GeteBayOfficialTimeRequest
xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>743</Version>
</GeteBayOfficialTimeRequest>
</soapenv:Body>
</soapenv:Envelope>
XML Example:
https://api.ebay.com/ws/api.dll
<?xml version="1.0" encoding="utf-8"?>
<GeteBayOfficialTimeRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>****</eBayAuthToken>
</RequesterCredentials>
</GeteBayOfficialTimeRequest>
Part 1 is located here: