c# - eBay API GetItemTransactions TransactionID completely wrong result -


i use xml based request ebay towards getitemtransactions method, , xml request looks this:

 <?xml version='1.0' encoding='utf-8' ?>   <getitemtransactionsrequest xmlns='urn:ebay:apis:eblbasecomponents' >   <requestercredentials>    <ebayauthtoken>//my auth token</ebayauthtoken>   </requestercredentials>   <itemid>131966550509</itemid>   <numberofdays>6</numberofdays>   <pagination>  <entriesperpage>200</entriesperpage>  <pagenumber>1</pagenumber>  </pagination>   <detaillevel>returnall</detaillevel>   <outputselector>returnedtransactioncountactual,feedbackscore,userid,currentprice,title,itemid,createddate,transactionprice,quantitypurchased,transactionid</outputselector>  </getitemtransactionsrequest> 

what have found odd incorrect here, fact wrong results transactionid parameter, in case transactions of item transactionid returned this:

transactionid  100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 100000000000 

i have tried using orderlineitemid field combination of itemid-transactionid make unique identifier, following:

100000000000-100000000000 

is there else can use unique identifier ebay or knows why results incorrect ?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -