I would like to update a Job with multiple operations via REST with one POST call. Is that possible, if so what is would the JSON Body look like?
Passing the below body into Erp.BO.JobEntrySvc/JobOpers throws an error.
{
"Company": "HF",
"JobNum": "48527-1.1",
"PartNum": "48527-1.1",
"AssemblySeq": 65,
"OprSeq": 30,
"OpCode": "100",
"StartDate": "2020-04-03",
"DueDate": "2020-04-03"
},
{
"Company": "HF",
"JobNum": "48527-1.1",
"PartNum": "48527-1.1",
"AssemblySeq": 65,
"OprSeq": 40,
"OpCode": "100",
"StartDate": "2020-04-03",
"DueDate": "2020-04-03"
}