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.
| Parameter | Type | Required | Description |
|---|---|---|---|
tenantId | String | Yes | Identifies the tenant. |
lookupType | String | Yes | Identifies the lookup type by name |
Request headers
The following request headers must be included.
| Header | Value | Required |
|---|---|---|
Authorization | Bearer {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.
| Field | Type | Description |
|---|---|---|
enabled | boolean | Enables or disables Autopilot for the lookup type. |
mode | string | Operating mode for Autopilot. |
autoMapEnabled | boolean | Enables automatic mapping. |
autoMapThreshold | number | Confidence threshold for automatic mapping. |
suggestionEnabled | boolean | Enables suggestions for the mappings |
suggestionThreshold | number | Confidence threshold for suggestions. |
createLookupEnabled | boolean | Enables automatic lookup creation. |
createLookupThreshold | number | Confidence threshold for lookup creation. |
suggestLookupEnabled | boolean | Enables lookup creation suggestions. |
suggestLookupThreshold | number | Confidence threshold for lookup suggestions. |
misspelledThreshold | number | Threshold used for misspelling detection. |
requiredFrequency | integer | Minimum occurrence frequency required before applying certain actions. |
frequencyWindowHours | integer | Time 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
}