通过Postman实现Sage Intacct API



我想通过Postman从实现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(内容。我相信你能搞定。

相关内容

  • 没有找到相关文章

最新更新