Postman Tutorial

Request example:

curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/post_employee/search/es_dsl' \
  -H 'accept: application/json' \
  -H 'apikey: {API Key}' \
  -H 'Content-Type: application/json' \
  -d '{
   "query":{
      "match":{
         "author_name":{
            "query":"John Smith",
            "operator":"and"
         }
      }
   }
}'

Last updated

Was this helpful?