Request Parameters

Autocomplete Request Parameters

NameDescription
input_textInput text to search by to return the suggestions.

Autocomplete Query Settings

SettingsDescriptionValue
fieldIndicates the field where the autocomplete needs to search.

- countries
- industries_names
- industries_codes
- technologies_product_names
- technologies_vendor_names
- technologies_product_category_names
- skill_names
- skill_categories
- skill_subcategories
Mandatory
display_countIndicates if the number of occurrences of the entity must be returned.Optional
page_sizeThe number [1, 100] of results to return in a single page.Optional.

The default is 10.
page_numberThe search results are paginated; this attribute specifies which page will be returned between [1, 100].Optional.

The default is 1.

Examples

{
    "field": "countries",
    "display_count": true,
    "page_size": 10,
    "page_number": 1,
    "parameters": {
        "input_text": "ba"
    }
}

What’s Next