EBay API adds tracking numbers - bug number 10007

Hi I am using this code to add tracking numbers in eBay SandBox which shows me success but I cannot see tracking numbers in my eBay

<?xml version="1.0" encoding="utf-8"?>
<CompleteSaleRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>my_ebay_eBayAuthToken</eBayAuthToken>
</RequesterCredentials>
    <ItemID>110154684599</ItemID>
  <TransactionID>27387395001</TransactionID>
  <ListingType>Half</ListingType>
  <Shipped>true</Shipped>
  <Shipment>
    <Notes>Item Shipped We are very Glad to have you</Notes>
    <ShipmentTrackingDetails>
      <ShipmentTrackingNumber>1030385557492892794611</ShipmentTrackingNumber>
      <ShippingCarrierUsed>USPSGround</ShippingCarrierUsed>
    </ShipmentTrackingDetails>
  </Shipment>
</CompleteSaleRequest>

      

and this shows me the result:

<?xml version="1.0" encoding="UTF-8"?>
<CompleteSaleResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2014-12-31T18:32:02.679Z</Timestamp>
  <Ack>Failure</Ack>
  <Errors>
    <ShortMessage>Internal error to the application.</ShortMessage>
    <LongMessage>Internal error to the application.</LongMessage>
    <ErrorCode>10007</ErrorCode>
    <SeverityCode>Error</SeverityCode>
    <ErrorClassification>RequestError</ErrorClassification>
  </Errors>
  <Version>893</Version>
  <Build>E893_CORE_API_17097905_R1</Build>
</CompleteSaleResponse>

      

which means the data was added successfully. but i cant see the tracking number ok.

+3


source to share


2 answers


Yes, this is an eBay end error, so please contact eBay support



+1


source


This is an old post, but I noticed that another issue is related to your XML request, which may have contributed to the original error code:

<ListingType>Half</ListingType>

      

This type tag tells the CompleteSale API that you want to work exclusively with half.com, not ebay.com, transactions. The eBay API Sandbox does not support any half.com API paths. So the above query will be unpredictable in the sandbox.



If you intended to work with a half.com transaction, tracking numbers are not displayed on My Ebay for them. They will appear under My Account-> Sales-> View Shipping Information in the half.com web interface.

Just say.

0


source







All Articles