I’m trying to create a new Customer using the PUT Method in Postman, and I’m receiving the following error message.
"error": "Inserting 'Location' record raised at least one error. Please review the errors.",
"SalesAccount": {
"error": "'Sales Account' cannot be empty."
},
Here’s what I’m sending through the Body.
{
"CustomerName": {"value":"TEST TEST"},
"Location":[
{"SalesAccount": {"value": "60040"}}
]
}
I copied this Sales Account value from another record, so I’m not sure why it’s not recognizing the value.