Hello All,
i tried to post one record to my custom entity throw postman it's posted successfully however in case of try to post more than one record it gives me the status 400 Bad requests, with the exception
The property '...' does not exist on type 'Microsoft.Dynamics.DataEntities....'. Make sure to only use property names that are defined by the type
I tried to change and use all the JSON formats available for me but unfortunately, it's not succeed
my custom entity custtbl as mentioned below the object which is not succeeded,
{
"d":[{
"dataAreaId": "rmlp",
"Custid": "801234",
"CustAddress": "Khobar",
"CustName": "Saad"
},
{
"dataAreaId": "rmlp",
"Custid": "901234",
"CustAddress": "Khobar",
"CustName": "Saad"
}]}
Many thanks for all of you.