Hi All,
Want to know how to use POST method to create multiple items in Postman using OData web services i'm able to create single item but when creating multiple items getting error 400 bad request, any suggestion would be helpful.
Below is the item detail which i'm trying to create in navision 2017 using postman connector.
{
"Data":[{
"No": "NS19870",
"Description": "NS Front Wheel",
"Type": "Inventory",
"Base_Unit_of_Measure": "PCS"
},
{
"No": "NS19871",
"Description": "NS Back Wheel",
"Type": "Inventory",
"Base_Unit_of_Measure": "KG"
},
{
"No": "NS19872",
"Description": "NS Front Back Wheel",
"Type": "Inventory",
"Base_Unit_of_Measure": "Pack"
}]
}