Hi,
I have been trying to use POST with a json array to create multiple entries at once, but I always get an 400 error. Is that normal?
I tried something as simple as
I also tried:
But even that did not work.
Thanks.
I have been trying to use POST with a json array to create multiple entries at once, but I always get an 400 error. Is that normal?
I tried something as simple as
Code:
[{"name":"Name1"},{"name":"name2"}]
Code:
{ "list":[ {"name":"name1"}, {"name":"name2"} ], "total":2 }
Thanks.
Comment