1 2 3 4 5 6 7 8 9
GET /search_products/_search { "query": { "term": { "tenant_id": "2" } } }
10 11 12 13 14 15 16 17 18 19 20
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{ "size": 5, "query": { "bool": { "filter": [ { "term": { "tenant_id": "162" } } ] } } }'