Request Parameters

Search Request Parameters

NameDescriptionOperators
profile_idprofile_id of contacts to filter by.includes, excludes
contact_idcontact_id of contacts to filter by.includes, excludes
first_nameFirst name of contacts to filter by.includes, excludes
last_nameLast name of contacts to filter by.includes, excludes
emailEmail associated with the contacts to filter by.includes, excludes
job_titleJob Title associated with the contacts to filter by.includes, excludes
job_functionJob Function associated with the contacts to filter by.includes, excludes
job_seniorityJob Seniority associated with the contacts to filter by.includes, excludes
social_linkSocial Links associated with the contacts to filter by.includes, excludes
social_link_nameSocial Links Names associated with the contacts to filter by.includes, excludes
expertiseExpertises of contacts to filter by.includes, excludes
company_nameName of the current company of contacts to filter by.includes, excludes
industry_nameName of the company_industries of contacts to filter by.includes, excludes
industry_standardStandard of the company_industries of contacts to filter by.includes, excludes
industry_codeCode of the company_industries of contacts to filter by.includes, excludes
keywordsKeywords found in various fields of the contacts to filter by.includes, excludes
regionUK Region where the contacts are located to filter by.includes, excludes
countryCountry where the contacts are located to filter by.includes, excludes
stateState where the contacts are located to filter by.includes, excludes
cityCity where the contacts are located to filter by.includes, excludes
countyCounty where the contacts are located to filter by.includes, excludes
postal_codePostal code where the contacts are located to filter by.includes, excludes
office_typeOffice Type of the current office of contacts to filter by.includes, excludes
company_idcompany_id of contacts to filter by.includes, excludes
phoneCompany Phone or Contact Phones of contacts to filter by.includes, excludes

Search Query Boolean Logic

A OR operator is applied between the values of a parameter.
A AND operator is applied between parameters.

Search Query Settings

SettingsDescriptionValue
page_sizeThe number [1, 100] of results to return in a single page.Optional.

The default is 20.
reveal_all_dataFor all contacts that match the criteria:

When set to true
A complete response will be returned. One contact record credit per contact returned will be charged.

When set to false
A partial response will be returned. No credit will be charged.
Optional. The default is false
page_numberThe search results are paginated; this attribute specifies which page will be returned between [1, 100].Optional.

The default is 1.

Examples

{
    "parameters": {
        "contact_id": [
            {
                "operator": "includes",
                "value": [
                    "cont-shli-93e0cd9ef1cef51120c8d3f040db7a80"
                ]
            }
        ]
    },
    "reveal_all_data": false
}
{
    "parameters": {
        "first_name": [
            {
                "operator": "includes",
                "value": [
                    "john"
                ]
            }
        ]
    },
    "reveal_all_data": false
}
{
    "parameters": {
        "last_name": [
            {
                "operator": "includes",
                "value": [
                    "john"
                ]
            }
        ]
    }
}
{
    "parameters": {
        "email": [
            {
                "operator": "includes",
                "value": [
                    "[email protected]",
                    "[email protected]"
                ]
            }
        ]
    }
}
{
    "parameters": {
        "industry_name": [
            {
                "operator": "includes",
                "value": [
                    "Marketing Consulting Services",
                    "Administration of financial markets"
                ]
            }
        ]
    }
}
{
    "parameters": {
        "job_function": [
            {
                "operator": "includes",
                "value": [
                    "General Management",
                    "Administration"
                ]
            }
        ]
    }
}

{
    "parameters": {
        "job_function": [
            {
                "operator": "includes",
                "value": [
                    "administration"
                ]
            }
        ],
        "country": [
            {
                "operator": "includes",
                "value": [
                    "United Kingdom"
                ]
            }
        ],
        "industry_name": [
            {
                "operator": "includes",
                "value": [
                    "Construction"
                ]
            }
        ]
    }
}