Unify and manage your data

Get effective Autopilot configuration for a lookup type

Retrieves the effective Autopilot settings for a lookup type by applying tenant defaults and any overrides, showing the final runtime configuration.

The Get effective Autopilot configuration for a lookup type API retrieves the effective Autopilot settings for a specific lookup type. The service determines the final configuration by evaluating tenant-level default settings and lookup type-specific overrides.

Use this API to understand how Autopilot applies configuration at runtime for a lookup type and which settings the service enforces during processing.

HTTP method and endpoint

Use the following HTTP method and endpoint path to submit the request for retrieving the effective Autopilot settings for a specific lookup type.

GET /configuration/{tenantId}/autopilot/resolved/{lookupType}

The following table describes the endpoint path parameters.

ParameterTypeRequiredDescription
tenantIdStringYesIdentifies the tenant.
lookupTypeStringYesIdentifies the lookup type by name

Request headers

The following request headers must be included.

HeaderValueRequired
AuthorizationBearer {token}Yes

Request body

This operation does not use a request body.

Response body

The following table describes the fields returned in the response body. This operation returns Autopilot configuration.

FieldTypeDescription
enabledbooleanEnables or disables Autopilot for the lookup type.
modestringOperating mode for Autopilot.
autoMapEnabledbooleanEnables automatic mapping.
autoMapThresholdnumberConfidence threshold for automatic mapping.
suggestionEnabledbooleanEnables suggestions for the mappings
suggestionThresholdnumberConfidence threshold for suggestions.
createLookupEnabledbooleanEnables automatic lookup creation.
createLookupThresholdnumberConfidence threshold for lookup creation.
suggestLookupEnabledbooleanEnables lookup creation suggestions.
suggestLookupThresholdnumberConfidence threshold for lookup suggestions.
misspelledThresholdnumberThreshold used for misspelling detection.
requiredFrequencyintegerMinimum occurrence frequency required before applying certain actions.
frequencyWindowHoursintegerTime window, in hours, used when evaluating frequency.

Example response

The following example shows a response body with the current matching, suggestion, and lookup threshold settings.

{
  "enabled": true,
  "mode": "ACTIVE",
  "autoMapEnabled": true,
  "autoMapThreshold": 0.70,
  "suggestionEnabled": true,
  "suggestionThreshold": 0.50,
  "createLookupEnabled": false,
  "createLookupThreshold": 0.90,
  "suggestLookupEnabled": false,
  "suggestLookupThreshold": 0.75,
  "misspelledThreshold": 0.80,
  "requiredFrequency": 5,
  "frequencyWindowHours": 24
}