Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 803 Bytes

all.org

File metadata and controls

56 lines (43 loc) · 803 Bytes

Testing ob-elasticsearch mode

Full URL

{
  "query": {
    "match_all": {}
  }
}

Limited URL, no method set

{
  "query": {
    "match_all": {}
  }
}

No url or method, included in body params

GET /_cluster/health?pretty
{}

DELETE /test/doc/1
{}

POST /test/doc/1/_create
{
  "body": "foo"
}

Include headers in the response

GET /
{}

Passing responses though the jq tool

GET /
{}

jq parameter should be ignored if the response was not successful

GET /badURL
{}