Hi,
I am using application that generates json request for creating new Bill item
New bill is successfully created, but filed Owner does not contain my value, which I sent, it contains some default value
I checked endpoint configuration and checked Owner value availability in system and I can’t figure out why Acumatica does not set my value to this field.
I there some specific configuration should be done to achieve this ?
Here is my request :
URL : https://ccgijkhlm.acumatica.com/entity/DocEndpoint/20.200.001/Bill
BODY :
{
"Date": {
"value": "01/20/2022"
},
"VendorRef": {
"value": "byIvan"
},
"Vendor": {
"value": "V00032346"
},
"Branch": {
"value": "CCG234MAIN"
},
"Description": {
"value": "PO0002342345246"
},
"DueDate": {
"value": "9/14/2023"
},
"Terms": {
"value": "NET30"
},
"Owner": {
"value": "Lehr"
},
"WorkgruopID": {
"value": "AP Processor"
}
}