Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

169
Views
EBay API Call Get Seller Transactions not Returning Seller Feedback Rating

I'm using the GetSellerTransactionsCall from eBay Trading API to obtain transaction from an eBay Seller.

According to eBay Documentation this call is suppose to return a Seller object which contains a UserType with the following data:

Seller Object

User Type with Feedback Star Rating

I'm using the code below to execute Get Seller Transactions Call:

GetSellerTransactionsCall getSellerTransactionsCall = new GetSellerTransactionsCall();
getSellerTransactionsCall.setApiContext(ebayAPI.getAPIContext(profileID));
DetailLevelCodeType[] detailsLevels = new DetailLevelCodeType[1];
detailsLevels[0] = DetailLevelCodeType.RETURN_ALL;
    
getSellerTransactionsCall.setDetailLevel(detailsLevels);
    
getSellerTransactionsCall.setIncludeFinalValueFee(true);


TransactionType[] transactionTypes = getSellerTransactionsCall.getSellerTransactions();


UserType sellerAsUserType = getSellerTransactionsCall.getSeller();
System.out.println("Seller: " +sellerAsUserType ); // Prints null
FeedbackRatingStarCodeType feedbackRatingStarCodeType = sellerAsUserType.getFeedbackRatingStar();
System.out.println("Feedback Rating Star Code: " + feedbackRatingStarCodeType); // Prints null

I know the call itself is successful as I am able to iterate through all transactions of the given seller - so this is not a question of whether the call was successful or not.

Why are sellerAsUserType and feedbackRatingStarCodeType both null?

over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!