Hi Team,
We have a requirement to create Issues(IN302000) via API calls and insert line details along with a custom field, but without mapping the custom field in the Web Service Endpoint. Currently, when we use a PUT request, the Issue is created with the line details, but the custom field is not being inserted. Could you please review this and suggest the best possible approach to achieve it.
For your reference, we’ve attached the package and the Postman request.
http://localhost/NAWEndpoints25.101.0153/(W(7))/entity/Default/24.200.001/InventoryIssue?$expand=Details
{
"Details": [
{
"InventoryID": {
"value": "AACOMPUT01"
},
"WarehouseID": {
"value": "WHOLESALE"
},
"Location": {
"value": "R1S1"
},
"Qty": {
"value": 1.000000
},
"UOM": {
"value": "EA"
},
"custom": {
"Transactions": {
"UsrCWQty": {
"type": "CustomDecimalField",
"value": 19.00000
}
}
}
}
],
"Hold": {
"value": true
}
}
