我能够POST
使用invoice EntityType
Web API。
创建后,invoice
我得到了guid
并且我想创建发票行项目,我认为是invoicedetail EntityType
.
我不能POST
一个新的invoicedetail
. 我对一系列不同属性的每次尝试都会收到一个Error 500 - An unexpected error occurred.
或Error 500 - The parent id is missing.
我正在尝试的 JSON 字符串示例POST
。(invoicedetailid
是GUID
我创建的上一张发票的)
{
"productdescription": "Test Line Item",
"invoicedetailid": "00000000-0000-0000-0000-0000000000000",
"priceperunit": 10,
"tax": 0,
"quantity": 1,
"baseamount": 10
}
文档含糊不清,我想知道,什么是最低必填字段,invoicedetail
我怎样才能POST
获得新的invoice EntityType
?