我可以使用什么 ebay api 来获得买家反馈(检查买家是否留下反馈)?
what ebay api can I use for getting buyer feedback(check whether buyer leaves feedback)?
我花了很长时间才找到哪个 ebay api 我可以用来获得买家的反馈,但没有运气。我在下面附上一张图片以显示我想要获得的数据:enter image description here
就像上图一样。我已经通过使用“GetFeedback”Ebay API 获得了我的(卖家)反馈消息。但是,我没有找到任何让我获得客户(买家)产品反馈的要素。
我也查了"GetOrders"API。也不支持反馈检查。
所以,我的问题是:有谁知道我可以使用哪种 ebay API 方法来获取买家的反馈信息或反馈状态(离开或离开)?或者与这部分相关的任何其他事情。
更新:
根据@Oleksandr Otchenashev 的回答,我终于找到了一种方法来检查我的买家是否给我留下了反馈。 FeedbackDetailArray->FeedbackDetail->CommentingUser
returns 我是留下反馈的用户。根据这些用户名,我会知道是我给我的客户留下了反馈,还是他们给我留下了任何反馈。
使用 GetFeedback api 是接收反馈的正确方式。
请查看 api cal.
中的字段 FeedbackType
FeedbackLeft
(in) This enumeration value will be used in the FeedbackType field of a GetFeedback call if the user wants to retrieve the Feedback they have left for their order partners while acting as a seller or buyer.
FeedbackReceived
(in) This enumeration value will be used in the FeedbackType field of a GetFeedback call if the user wants to retrieve the Feedback data that they have received acting as a seller and buyer.
可能感兴趣的另一部分是 Role 响应。
这两个字段让你明白是不是买家给我这个卖家留下的feedback。或者这是我作为买家角色留给另一个卖家的反馈。
因此您可以进行两次反馈电话 api,第一次是 "FeedbackReceivedAsSeller",第二次是 "FeedbackLeft"
我花了很长时间才找到哪个 ebay api 我可以用来获得买家的反馈,但没有运气。我在下面附上一张图片以显示我想要获得的数据:enter image description here
就像上图一样。我已经通过使用“GetFeedback”Ebay API 获得了我的(卖家)反馈消息。但是,我没有找到任何让我获得客户(买家)产品反馈的要素。
我也查了"GetOrders"API。也不支持反馈检查。
所以,我的问题是:有谁知道我可以使用哪种 ebay API 方法来获取买家的反馈信息或反馈状态(离开或离开)?或者与这部分相关的任何其他事情。
更新:
根据@Oleksandr Otchenashev 的回答,我终于找到了一种方法来检查我的买家是否给我留下了反馈。 FeedbackDetailArray->FeedbackDetail->CommentingUser
returns 我是留下反馈的用户。根据这些用户名,我会知道是我给我的客户留下了反馈,还是他们给我留下了任何反馈。
使用 GetFeedback api 是接收反馈的正确方式。
请查看 api cal.
中的字段 FeedbackTypeFeedbackLeft (in) This enumeration value will be used in the FeedbackType field of a GetFeedback call if the user wants to retrieve the Feedback they have left for their order partners while acting as a seller or buyer.
FeedbackReceived (in) This enumeration value will be used in the FeedbackType field of a GetFeedback call if the user wants to retrieve the Feedback data that they have received acting as a seller and buyer.
可能感兴趣的另一部分是 Role 响应。
这两个字段让你明白是不是买家给我这个卖家留下的feedback。或者这是我作为买家角色留给另一个卖家的反馈。
因此您可以进行两次反馈电话 api,第一次是 "FeedbackReceivedAsSeller",第二次是 "FeedbackLeft"