For questions relating to eBay's Software Development Kit (SDK). When using this tag also provide the appropriate language tag, such as; python, java, etc.
Questions tagged [ebay-sdk]
112 questions
1
vote
1 answer
Returning Item Attributes from Find Items Advanced API in eBay
I'm making a call to the find items advanced api for eBay, based on a search query.
https://developer.ebay.com/DevZone/finding/CallRef/findItemsAdvanced.html
My call looks something like this;
let url =…

John Rogerson
- 1,153
- 2
- 19
- 51
1
vote
0 answers
ebay api FiexedPriceTransaction notification and get the updated item quantity
When the FixedPriceTransaction is sent, I need to know what is the new quantity of the item purchased, so if I call GetItem api, have the info of the item purchased quantity decreased ( updated quantity )?

blob
- 439
- 8
- 21
1
vote
0 answers
What information is required to ReviseItem on a variation? ebay sdk api
[EDIT] Instead of using ReviseItem I switched to ReviseInventoryStatus which is the correct method. Not sure why I have been using ReviseItem calls for the last few years. I am either dumb or some part of the api or docs changed and I never caught…

SmithBurger
- 61
- 5
1
vote
0 answers
GetSellerList Returning My Own Items With Another Userid Specified
So I'm seeing some unusual activity with the Trading API using the GetSellerList action. Making any call while I'm specifying ANY value results in me returning only my ebay items. I'm looking at pulling another users sellerslist, not my own. I've…

BIKE.ma
- 21
- 6
1
vote
2 answers
How to fix request is missing required input tag
I am trying to get some products from a user's ebay account, but when I run my code I am only getting a that error "Your application encountered an error. This request is missing required input tag " or "."

BIKE.ma
- 21
- 6
1
vote
1 answer
How to use GetSuggestedCategories function for Other Than US Site in ebay api
I need to get suggested categories for my items. However, when I make a request I get a reply for the US site. How to get it for the UK?
my code:
from ebaysdk.trading import Connection
api = Connection(config_file="ebay.yaml",…

Fen
- 37
- 1
- 6
1
vote
0 answers
eBay API reviseItem call using Java SDK
I have two ItemType objects: oldItem and newItem. I would like to Revise the oldItem to reflected changes in the newItem. To do this I assume after reading the documentation that we need to provide a list of removed/deleted fields.
Can anyone…

Mohamed Shakir
- 43
- 1
- 6
1
vote
1 answer
How do I get the brand name from the eBay Trading API?
I am using Trading API (eBay Python SDK) to extract the product name, pictures and also its price. However I have some difficulties in extracting the brand name and the description (condition, material, authenticity, etc).
Is there a way to extract…

Hello_World
- 101
- 3
- 10
1
vote
2 answers
Accessing object element by index
I'm using eBay API which returns:
DTS\eBaySDK\Types\RepeatableType Object
(
[data:DTS\eBaySDK\Types\RepeatableType:private] => Array
(
[0] => 60
)
[position:DTS\eBaySDK\Types\RepeatableType:private] => 0
…

eozzy
- 66,048
- 104
- 272
- 428
1
vote
0 answers
eBay Trading API AddItem issues in Germany SiteID
I have PHP SDK for Trading API. I used the sandbox account with US SiteID, it's working fine, but I tried with Germany SiteID like DE, it's not working. Does anyone have a solution.
Thanks in advance.
The error I get is like this (translated to…

Tech Dass
- 21
- 1
- 4
1
vote
2 answers
Implement eBay Finding/Feedback API
I have just started with the ebay Finding API and Feedback API and I need to deploy a basic API implementation on GAE/J.
The problems are:
How do we start with the local dev environment of the ebay SDK?
There is no Java tutorial for the Finding API…

zengr
- 38,346
- 37
- 130
- 192
1
vote
0 answers
eBay API 'The operation has timed out' exception
I want to download orders from eBay. I have created the necessary credentials on eBay's sandbox site and added the eBay dll references in my project as
eBay.Service
eBay.Service.SDK.Attribute
My code is following:
public void Getorders()
{
…

Shital Kadam
- 238
- 2
- 5
- 14
1
vote
1 answer
How to install \ Import the ebay sdk
So I'm trying to install / import the ebay SDK for java in Eclipse, but I can't it's in some strange file I don't know about, I need to do this so I can execute the getMyEbayBuyings call, described here:…

nirh216
- 335
- 1
- 6
- 15
1
vote
1 answer
eBay Trading API getOrders: check if order is marked as shipped
I want to get all orders from my ebay seller account. Using the GetOrders call works fine.
All of my orders are marked as ACTIVE or COMPLETE depending on the status of the order. But when I mark them as shipped (through API or on the website) the…

user2066662
- 21
- 1
- 3
1
vote
1 answer
eBay Python SDK 'findItemsAdvanced' call returns Internal Server Error
I am trying to use the following wrapper for the ebay api:
http://code.google.com/p/ebay-sdk-python/
However, when I execute the following code I obtain:
from ebaysdk import finding, tag, nodeText
f = finding()
f.execute('findItemsAdvanced',…

Dnaiel
- 7,622
- 23
- 67
- 126