Reputation: 588
Hi I have json data which i want to insert into solr. How can i do that using Postman. I need send a json data and store it into solr core. How can i do that using POSTMAN
{
"name":"John",
"age":30,
"cars":"BMW"
},
{
"name":"Harry",
"age":30,
"cars":"BMW"
},
{
"name":"Pinku",
"age":30,
"cars":"BMW"
}
Upvotes: 0
Views: 2806
Reputation: 731
Make sure to create a json array for multiple documents
[ { "name": "John", "age": 30, "cars": "BMW" }, { "name": "Harry", "age": 30, "cars": "BMW" }, { "name": "Pinku", "age": 30, "cars": "BMW" } ]
Upvotes: 2