I'm trying to find products by UPC using EBay's Product Find Items by Product ID, specifically using the Python bindings.
I'm trying:
api = Connection(
appid='my id', config_file=None)
response = api.execute('findItemsByProduct', {
'productId': 820103794923,
'itemFilter': [
{'name': 'MinQuantity', 'value': 1},
But I get:
{'ack': 'Failure', 'errorMessage': {'error': {'errorId': '4', 'domain': 'Marketplace', 'severity': 'Error', 'category': 'Request', 'message': 'Product ID is required.', 'subdomain': 'Search'}}, 'version': '1.13.0', 'timestamp': datetime.datetime(2020, 3, 24, 21, 46, 52)}
Whats the correct argument?