Pagination: Base Employee API
Last updated
Was this helpful?
Was this helpful?
[
1000,
1001,
3000,
4004
]curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_base/search/es_dsl?after=461113455' \
-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_base/search/es_dsl?after=11.872147,"2025-01-27 04:46:18",548503248' \
-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_base/search/es_dsl?items_per_page=150' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"full_name":{
"query":"John Smith",
"operator":"and"
}
}
}
}'