I have a document of below structure.
{
"OrderId": "2500001101518267176",
"CustID":"6576788",
"OrderDate": "2018-02-04T11:00:25.35",
"ShippingMethod": "standard",
"CertCode":"",
"Status":"1",
"LineItem": [
{
"lineNumber":1,
"LineItemId": "169673001611457008",
"ProductId": "189944947919967210",
"PO":"ZAZ100012001",
"CONumber":"",
"MWWITemCode":""
},
{
"lineNumber":2,
"LineItemId": "169673001611457002",
"ProductId": "189944947919967210",
"PO":"ZAZ100012001",
"CONumber":"",
"MWWITemCode":""
}
]
}
Here I am looking to update the 'CONumber' for the first document in the nested 'LineItem'.
Is there any option to update the this nested item via Update API?