Hello,
I would like to ask for GET behavior in elasticsearch.
I am using kibana dev tools
Let say i am creating a new index to elasticsearch
PUT /customers/my_test/0001
{
"name": "For testing purpose"
}
run GET /customers will return index mapping and settings
then i run GET
GET /customers/_mapping/my_test
{
"dynamic": "strict"
}
and it return ack true, and when i run GET /customers
"my_test": { "dynamic": "strict",
Why i am able to update index using GET with body?