Hi All,
I want to change the Freight Price and Amount on SO303000. I tried few different way but can’t make it.

My most current request.
I send PUT request to endpoint SalesInvoice
with body:
{
"ReferenceNbr": { "value": "INVSP212099" },
"Type": { "value": "Invoice" },
"FreightDetails": [
{ "OrderNbr":{
"value":"SP219039"
},
"OrderType":{
"value":"SP"
},
"ShipmentNbr": {
"value": "SHP297504"
},
"ShipmentType": {
"value": "Shipment"
},
"FreightAmount": {
"value": 0
}
}
]
}
This will add a new line not update the current data.
Do anyone have been done this before? Thank you.