cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

GetFeedback query - response not returning <FeedbackDetailArray>

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=\"urn:ebay:apis: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

Message 1 of 2
latest reply
1 BEST ANSWER

Accepted Solutions

GetFeedback query - response not returning <FeedbackDetailArray>

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!

😀

 

 

View Best Answer in original post

Message 2 of 2
latest reply
1 REPLY 1

GetFeedback query - response not returning <FeedbackDetailArray>

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!

😀

 

 

Message 2 of 2
latest reply