Dieser CURL Request erstellt einen neuen Index "mein_index" mit den Feldern "field1" und "flield2" mit Hilfe der Create Index API.
curl -X PUT "https://<host>:<port>/mein_index" -H "Content-Type: application/json" -d '{ "mappings": { "properties": { "field1": { "type": "text" }, "field2": { "type": "keyword" } } } }' -u <user>:<pass>