For more information, please refer to this announcement explaining best practices for getting answers to questions.
How can I create multiple records in a single payload from Postman?
Hi,
I can create them one by one as follows, but I get the following error when creating more than one record in a single payload. Can you correct my mistake?
Thanks
{
"IndependentValue": "Test",
"Value": "888",
"Description": "TST9",
"EnabledFlag": "N"
}
This occurs successfully.
But,
[ {
"IndependentValue": "Test",
"Value": "888",
"Description": "TST9",
"EnabledFlag": "N"
},
{
"IndependentValue": "Test1",
"Value": "8",
"Description": "TST8",
"EnabledFlag": "N"
}]
Can you help with this?
Regards