Enrichment
Enrich object data in Nexthink inventory with attributes from outside sources using the Nexthink Enrichment API, allowing you to create integrations with external applications such as ServiceNow or Azure AD.
The Enrichment API allows you to update the values of any number of fields for any object. Enrich object data for manual custom fields (any object) or virtualization fields (devices only).
Setting up API credentials
To set up an integration with the Nexthink API, you must first create a set of API credentials in your instance that the external application or service will use to access the API. Refer to the API Credentials documentation.
Retrieving object IDs
The API accepts the following IDs:
device/device/name
device/device/uid
user/user/sid
user/user/uid
user/user/upn
binary/binary/uid
package/package/uid
Device name information (device/device/name
) as well as Windows security identifier (SID) and User Principal Name (UPN) for users (user/user/sid
and user/user/upn
respectively) might already exist in the source system.
You can enable UPN opt-in metric collection at a Collector level using the Collector Configuration library pack. Only non-anonymized (cleartext) UPN is supported with the API. Library links:
Set Anonymization Features macOS, setting: anonymize_upn, value: cleartext
Set Anonymization Features Windows, setting: anonymize_upn, value: 2
Nexthink generates UID fields for all objects. Retrieve them by running Investigations and exporting the UID values to CSV.
Retrieving field IDs
Depending on your use case, you might want to update device virtualization fields, user Entra ID fields or create custom fields to store the enrichment data. The following sections describe the flow for each use case. Combining both use cases into a single API call is also possible.
The system clears the data by sending an empty string as the value of the field that you want to clear.
Entra ID
You can enrich the following user Entra ID properties:
user/user/ad/city
(string)user/user/ad/country_code
(string)user/user/ad/department
(string)user/user/ad/distinguished_name
(string)user/user/ad/email_address
(string)user/user/ad/full_name
(string)user/user/ad/job_title
(string)user/user/ad/last_update
(datetime)user/user/ad/office
(string)user/user/ad/organizational_unit
(string)user/user/ad/username
(string)
Find more information on these fields on the NQL data model documentation page.
Virtualization
You can enrich the following device virtualization properties:
device/device/virtualization/desktop_broker
(enumeration with the following allowed values: 1, 2, 3, corresponding to 1 - citrix_cvad, 2 - citrix_daas, 3 - azure_virtual_dektop)device/device/virtualization/desktop_pool
(string)device/device/virtualization/disk_image
(string)device/device/virtualization/environment_name
(string)device/device/virtualization/hostname
(string)device/device/virtualization/hypervisor_name
(string)device/device/virtualization/instance_size
(string)device/device/virtualization/last_update
(datetime)device/device/virtualization/region
(string)device/device/virtualization/type
(enumeration with the following allowed values: 1, 2, 3, corresponding to 1 - shared, 2 - personal, 3 - pooled)
Find more information on these fields on the NQL data model documentation page.
Configuring device organization
Assign a configurable label device/device/configuration_tag
to identify a group of devices.
Custom fields
First, create manual custom fields for each object attribute you wish to store, as described in the Custom fields documentation. All custom fields are of string type.
Next, create the field ID in the format required by the API as a concatenation of the object type and the NQL ID of the field.
Navigate to the custom fields administration page from the main menu.
Find the custom field you need the ID for and click on the action menu on the right side of the row to Copy NQL ID.
Paste the NQL ID into another location or tool to continue your work.
The field ID in the format required by the API is the NQL ID with the prefix
<object>/<object>/
.
Example
If you have defined a custom field on binary objects with the NQL ID #test_binary
, then its field ID for the API is binary/binary/#test_binary
.

Last updated
Was this helpful?