I am not able to update the payment method in sale...
# suitetalkapi
d
I am not able to update the payment method in sales order with empty value using SOAP ? how can I set it empty?
Copy code
<tranSales:paymentMethod internalId="5"/>
What i should pass inorder to set it empty
b
Copy code
<tranSales:paymentMethod internalId="null"/>
or use the nullFieldList
Copy code
<platformCore:nullFieldList xsi:type="platformCore:NullField">
  <platformCore:name>paymentMethod</platformCore:name>
</platformCore:nullFieldList>
d
@battk figured it out, thanks a lot for the reply