Pagination: Multi-source Employee API
Last updated
Was this helpful?
Was this helpful?
[
1000,
1001,
3000,
4004
]curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_multi_source/search/es_dsl?after=541168785' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"full_name":{
"query":"John Smith",
"operator":"and"
}
}
},
"sort": [
"id"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_multi_source/search/es_dsl?after=11.812105,"2024-06-02T08:27:03.317837Z",572523155' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"full_name":{
"query":"John Smith",
"operator":"and"
}
}
},
"sort": [
"_score"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_multi_source/search/es_dsl?items_per_page=200' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"full_name":{
"query":"John Smith",
"operator":"and"
}
}
}
}'