Elasticsearch DSL: Employee Posts API

Data type:

Query type:

URL:

Employee Posts

Elasticsearch DSL

https://api.coresignal.com/cdapi/v2/employee_post/search/es_dsl


Overview

Use the /v2/employee_post/search/es_dsl endpoint for more sophisticated queries.

Additionally, the endpoint allows you to operate filters that mimic our employee posts data, enabling you to write more sophisticated queries than using the /v2/employee_post/search/filter endpoint.

Elasticsearch schema

chevron-rightElasticsearch schemahashtag

Sorting options

Find several examples of the available sorting options. All information about the sorting is in the general Elasticsearch DSL topic.

Sort by ID
{
    "query": {
        "match": {
            "author_name":{
                "query":"John Smith",
                "operator": "and"
            }
        }
    },
    "sort": [
        "id"
    ]
}

Last updated

Was this helpful?