post https://{api_url}/api/v5/admin/search/booking
An Elastic search query endpoint to query booking details.
Elasticsearch provides a full Query DSL based on JSON to define queries.
Query DSL
e.g: a query that matches documents matching boolean combinations of other queries
{ "query": { "bool":{ "must":[ {"match": {"location":"-71.2760089" }}, {"match":{"settings.multi_stats.completed":"2016-07-19T18:18:04+01:00"}}, {"match":{"settings.obfuscated_id":"9cSDq_ffSGbCz6Yp"}} ] } } }
Recipes
👩💻
Fetch Summarised Booking Data from JRNI
Open Recipe