10-03-2024 07:00 PM
Hello,
I'm trying to get feedback for an item and the response returns the <SellerRatingSummaryArray> but not the <FeedbackDetailArray>.
Here's my request:
$xml_request = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>
<GetFeedbackRequest xmlns=\"urnapis:eBLBaseComponents\">
<RequesterCredentials>
<eBayAuthToken>" . $auth_token . "</eBayAuthToken>
</RequesterCredentials>" .
"<ItemID>" . $item_id . "</ItemID>" .
"<Pagination>
<EntriesPerPage>25</EntriesPerPage>
<PageNumber>1</PageNumber>
</Pagination>" .
"<OrderRole>Seller</OrderRole>" .
"<FeedbackType>FeedbackReceivedAsSeller</FeedbackType>" .
"<UserID>imagoscape</UserID>";
$xml_request .= "</GetFeedbackRequest>";
Do I have to specify any other input fields for the request?
thanks for any help
Solved! Go to Best Answer
10-03-2024 07:18 PM
Hi again,
I've looked again at the GetFeedback request and noticed that the DetailLevel input field does return the <FeedbackDetailArray>.
So I added the DetailLevel input field and specified ReturnAll for the DetailLevelCodeType in the request:
<DetailLevel>ReturnAll</DetailLevel>
cheers!
😀
10-03-2024 07:18 PM
Hi again,
I've looked again at the GetFeedback request and noticed that the DetailLevel input field does return the <FeedbackDetailArray>.
So I added the DetailLevel input field and specified ReturnAll for the DetailLevelCodeType in the request:
<DetailLevel>ReturnAll</DetailLevel>
cheers!
😀