Elasticsearch DSL
Data type:
Query type:
URL:
Employee Posts
Elasticsearch DSL
https://api.coresignal.com/cdapi/v2/post_employee/search/es_dsl
Overview
Use the /v2/post_employee/search/es_dsl
endpoint for more sophisticated queries.
Additionally, the endpoint allows you to operate filters that mimic our job posting data, enabling you to write more sophisticated queries than using the /v2/post_employee/search/filter
endpoint.
Elasticsearch schema
Sorting options
Find several examples of the available sorting options. All information about the sorting is in the general Elasticsearch DSL topic.
{
"query": {
"match": {
"author_name":{
"query":"John Smith",
"operator": "and"
}
}
},
"sort": [
"id"
]
}
Last updated
Was this helpful?