0

我正在尝试使用 Zapier 的 POST 方法通过 URL ( https://import.checkout-secured.com/bo/interface/order/import )向履行公司发送 XML 代码。

履行公司说他们没有收到它。

有人可以指出我正确的方向吗?我在做什么错?

这是XML代码...

<sales>
 <sale>
    <cid>615</cid>
    <apikey>asdf1234</apikey>
    <miscID>morpheuzG</miscID>
    <email>morpheuzG@gmail.com</email>

    <bill>
       <contact>
          <fname>MorpheuZ</fname>
          <lname>Gee</lname>
       </contact>

       <address>
          <line1>123 Main St.</line1>
          <line2></line2>
          <city>New York</city>
          <state>NY</state>
          <zip>10007</zip>
          <country>USA</country>
       </address>
    </bill>

    <orderDate>03/24/2020 01:01:01 AM</orderDate>

    <items>
       <item>
          <sku>10101010</sku>
          <quantity>1</quantity>
       </item>
    </items>

    <ship>
       <method>Shipping</method>
    </ship>

    <billInstructions>Test 1</billInstructions>
    <shipInstructions>Test Ship 1</shipInstructions>
 </sale>
</sales>

扎皮尔详细信息:

Method: Post
URL: https://import.checkout-secured.com/bo/interface/order/import
Data-Pass Through: (blank)
Date: (shown above)
Unflatten: No
Basic Auth: (blank)
4

1 回答 1

0

从上面的代码很难看出,但是当你登录到 Zapier 时,你可以找到一些线索。以下是一些可能会有所帮助的提示:

首先,您可以尝试在https://zapier.com/app/history查看您的任务历史记录。每次您的 Zap 运行时,您都会在此处看到历史记录中的一行。如果您发现与您认为应该有效的 Zap 相对应的时间戳,您可以单击该行并查看每个步骤的结果。例如,如果出现错误或缺少数据,您将在任务历史记录中看到该状态。如果 Zap “有效”,您可以查看数据以查看发送的内容并以这种方式进行调试。https://zapier.com/learn/getting-started-guide/task-history/

如果这仍然不起作用,Zapier 客户服务团队可以深入挖掘,为您提供一些建议。前往https://zapier.com/app/contact-us并添加一些上下文;他们可以进一步挖掘并帮助您解决这个问题。

于 2020-03-25T12:55:00.843 回答