如何让卖家从ebay GetMyMessages API发送消息?

时间:2017-04-10 07:08:41

标签: php api ebay ebay-api trading

我通过Ebay GetMymessages API获得卖家和买家消息。

但我只希望卖家发送消息。

如何让卖家发送与Ebay API分开的邮件?

1 个答案:

答案 0 :(得分:0)

我得到了卖家消息的解决方案。 我只是用了下面的api。

<?xml version="1.0" encoding="utf-8"?>
<GetMemberMessagesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <RequesterCredentials>
  <eBayAuthToken>***</eBayAuthToken>
  </RequesterCredentials>
  <WarningLevel>High</WarningLevel>
  <DisplayToPublic>false</DisplayToPublic>
  <MailMessageType>AskSellerQuestion</MailMessageType>
  <MessageStatus>CustomCode</MessageStatus>
  <StartCreationTime>2017-04-10T00:00:00.000Z</StartCreationTime>
  <EndCreationTime>2017-04-11T00:00:00.000Z</EndCreationTime>
   <Pagination>
    <EntriesPerPage>100</EntriesPerPage>
    <PageNumber>1</PageNumber>
  </Pagination>

相关问题