微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

通过邮递员实现Sage Intacct API

如何解决通过邮递员实现Sage Intacct API

我想通过邮递员从实施Sage Intacct API的采购订单中获取发票链接

我想可以通过遵循以下顺序(或者仅通过一个api请求?对此不确定)来完成。

  1. 订购商品
  2. 创建购买收据
  3. 从中获取发票链接

请参阅此api文档https://developer.intacct.com/api)。

即这是创建购买交易的请求的主体。

<?xml version="1.0" encoding="UTF-8"?>
<request>
  <control>
    <senderid>{{sender_id}}</senderid>
    <password>{{sender_password}}</password>
    <controlid>{{$timestamp}}</controlid>
    <uniqueid>false</uniqueid>
    <dtdversion>3.0</dtdversion>
    <includewhitespace>false</includewhitespace>
  </control>
  <operation>
    <authentication>
      <sessionid>{{temp_session_id}}</sessionid>
    </authentication>
    <content>
      <function controlid="{{$guid}}">
        <create_potransaction>
          <transactiontype>Purchase Requisition</transactiontype>
          <datecreated>
            <year>2013</year>
            <month>6</month>
            <day>19</day>
          </datecreated>
          <vendorid>1001</vendorid>
          <referenceno>1234</referenceno>
          <vendordocno>vendordocno001</vendordocno>
          <datedue>
            <year>2013</year>
            <month>6</month>
            <day>20</day>
          </datedue>
          <payto>
            <contactname>Jameson Company</contactname>
          </payto>
          <exchratetype>Intacct Daily Rate</exchratetype>
          <customfields/>
          <potransitems>
            <potransitem>
              <itemid>75300GL</itemid>
              <quantity>100</quantity>
              <unit>Each</unit>
              <price>1</price>
              <locationid>MGMT-US</locationid>
              <departmentid>IT</departmentid>
            </potransitem>
          </potransitems>
        </create_potransaction>
      </function>
    </content>
  </operation>
</request>

谢谢。

解决方法

您可以从开发人员文档中下载Postman收集文件(API)。 然后,只需参考“购买/购买交易/创建交易(旧版)”即可。 您可以更改正文(SOAP)内容。 我确定您可以管理它。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。