ElasticSearch (PowerShell)
Do a Search
$body = '
{
"query": {
"term": {
"myValue": "123"
}
}
}
'
Invoke-WebRequest -Uri "{elasticsearch-host}/{index}/_search" -Method Post -Body $body -ContentType "application/json" | Select-Object -Expand Content