We are creating a case in the dev panel in Elastic, here is the code:
POST api/cases
{
"description": "A case description.",
"title": "Case title 1",
"tags": [ "tag 1" ],
"connector": {
"id": "none",
"name": "none",
"type": ".none",
"fields": null
},
"settings": {
"syncAlerts": true
},
"owner": "(user"
}
It's returning this but we can't find it anywhere:
#! [types removal] Specifying types in document index requests is deprecated, use the typeless endpoints instead (/{index}/_doc/{id}, /{index}/_doc, or /{index}/_create/{id}).
{
"_index" : "api",
"_type" : "cases",
"_id" : "(ID)",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"_seq_no" : 14,
"_primary_term" : 1
}
Is there somewhere we aren't looking? it says the case has been created successfully but it's not displayed anywhere.