Hello All,
I want to update sale order line on Dynamic 365, I try to use following way:
Send Put request to:
I also add IF-Match in header
The data I post is:
{
"Document_Type": "Order",
"Document_No": "SO1901101",
"Type": "Item",
"No": "REAREAMACOTHMAC",
"Line_No": 10000,
"Quantity": 1,
"Unit_Price": 100,
"Shipment_Date": "2019-03-12",
"Shortcut_Dimension_2_Code": "SDKBUFS"
}
But I get follow error:
{
"error": {
"code": "BadRequest_NotFound",
"message": "The number of keys specified in the URI does not match number of key properties for the resource 'NAV.Sales_Order_Lines'."
}
}
*This post is locked for comments