Pagination: Employee Posts API
Last updated
Was this helpful?
Was this helpful?
[
1000,
1001,
3000,
4004
]curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_post/search/es_dsl?after=6553076922996396032' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"author_name":{
"query":"John Smith",
"operator":"and"
}
}
},
"sort": [
"id"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_post/search/es_dsl?after=11.875278,"2024-09-03",7236756071086710784' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"author_name":{
"query":"John Smith",
"operator":"and"
}
}
},
"sort": [
"_score"
]
}'curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_post/search/es_dsl?items_per_page=150' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query":{
"match":{
"author_name":{
"query":"John Smith",
"operator":"and"
}
}
}
}'