Reputation: 2241
Making first steps in elasticsearch and reading article https://www.elastic.co/blog/a-practical-introduction-to-elasticsearch I try to send requests in postman and got error:
"error": "Content-Type header [multipart/form-data; boundary=--------------------------039246746046020007284747] is not supported", "status": 406
I filled 2 tabs in postman:
https://i.sstatic.net/pXkOa.jpg
https://i.sstatic.net/aDv5n.jpg
Which options did I miss ?
Thanks!
Upvotes: 0
Views: 1127
Reputation: 16943
Send the body as raw JSON:
You've chosen form-data
which is not supported in ES. It's JSON-in, JSON-out.
Upvotes: 2