我正在尝试使用 Sage SDATA Rest Service 来创建订单。到目前为止,我似乎无法在订单中找到构成订单的组件。这是我要达到的端点:
[POST] http://{company}/SDataServlet/sdata/sageERP/accpac/{org}/oeorders/
那么,如何确定有效载荷中需要哪些元素?
我正在尝试使用 Sage SDATA Rest Service 来创建订单。到目前为止,我似乎无法在订单中找到构成订单的组件。这是我要达到的端点:
[POST] http://{company}/SDataServlet/sdata/sageERP/accpac/{org}/oeorders/
那么,如何确定有效载荷中需要哪些元素?
弄清楚出了什么问题。运送新订单时必须使用 POST,而不是 PUT。最小的有效载荷似乎如下:
<entry xmlns:sdata="http://schemas.sage.com/sdata/2008/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.w3.org/2005/Atom">
<sdata:payload>
<oeorder xmlns="http://schemas.sage.com/sageERP">
<TERMS></TERMS>
<CUSTOMER></CUSTOMER>
</oeorder>
</sdata:payload>
</entry>