v2

latestOpenAPI 3.1.02026-07-262653151.5 KB
profiles

Search for profiles ids

Search for profiles ids using the ElasticSearch Query DSL format

post/v2/profiles/search

Request body

queryobject required

Search query in the ElasticSearch Query DSL format. Find mapping here

limitinteger

Limit the number of results. If you want to use stable_pagination this parameter must be set to 1000

paginationTokenstring

Pagination token received in the previous response

stable_paginationboolean

When set to true, ensures that pagination results remain consistent, even if the underlying data changes during retrieval. This is useful for retrieving large result sets reliably across multiple requests

inNetworkOnlyboolean

When set to true, restricts search results to profiles that are connected to your team's network. This parameter filters the query to only return profiles that have established connections with connectors of your organization.

Example request

{
  "query": {
    "match": {
      "profile_info.job_title": {
        "query": "Data Scientist"
      }
    }
  }
}

Response

A list of profile ids matching provided query

idsstring[] required

List of profile ids

totalCountinteger required

Total number of profiles matching the query

paginationTokenstring

Pagination token for the next request

All 26 operations