Elasticsearchのエラー。post時にデータ登録できなかった "error" : "Content-Type header [application/x-www-form-urlencoded] is not supported" "status" : 406 elasticsearch

Elasticsearchのエラー。post時にデータ登録できなかった。 error : Content-Type header [application/x-www-form-urlencoded] is not supported status : 406
Content-Type の指定必須
Elasticsearch への API は Transport通信を除いて、HTTP(s) リクエストによって操作します。
Elasticsearch 5系までは自動検出していた Content-Type ヘッダだが、Elasticsearch 6系より指定が必須のよう

・エラー内容
$ curl -XPOST localhost:9200/classmethod/employees/_bulk?pretty --data-binary @index-template.json
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 980k 100 109 100 980k 82 738k 0:00:01 0:00:01 --:--:-- 756k{
error : Content-Type header [application/x-www-form-urlencoded] is not supported
status : 406
}

・以下に修正して実行すると無事データがはいった
オプションで、「-H Content-Type: application/json 」を指定する
$ curl -H Content-Type: application/json -XPUT localhost:9200/_template/classmethod -d @index-template.json