Unify and manage your data

List Lookup type blocked values

Learn how to retrieve blocked values configured for a specific lookup type.

The List lookup type blocked values API retrieves blocked values configured for a specific lookup type. These values are excluded from Autopilot processing for the selected lookup type.

The response returns a paginated list of blocked values along with metadata such as creation time and author.

HTTP method and endpoint

Use the following HTTP method and endpoint path to submit the request:

GET /configuration/{tenantId}/autopilot/{lookupType}/blockedValues?offset={offset}&limit={limit}

This endpoint retrieves blocked values configured for the specified lookup type, with optional pagination support.

The following table describes the endpoint path parameters.

ParameterTypeRequiredDescription
tenantIdStringYesTenant identifier
lookupTypeStringYesLookup type name

Query parameters

The following table describes the query parameters.

ParameterTypeRequiredDescriptionAccepted values / Default
offsetIntegerNoStarting offset for pagination.Default: 0
limitIntegerNoMaximum number of results to return.Default: 100, max: 100

Request headers

The following request headers must be included.

HeaderValueRequired
AuthorizationBearer {token}Yes

Request body

This operation does not require a request body.

Response body

The following table describes the fields returned in the response body.

FieldTypeDescription
tenantIdStringThe identifier of the tenant.
lookupTypeStringThe lookup type associated with the blocked value.
valueStringThe blocked value.
createdAtNumberThe timestamp when the blocked value was created, in epoch milliseconds.
createdByStringThe identifier of the user who created the blocked value.

Example response

The following example shows a response containing lookup type blocked values.

[
  {
    "tenantId": "my_tenant",
    "lookupType": "rdm/lookupTypes/Country",
    "value": "TEST",
    "createdAt": 1704153600000,
    "createdBy": "admin@company.com"
  }
]