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.
| Parameter | Type | Required | Description |
|---|---|---|---|
tenantId | String | Yes | Tenant identifier |
lookupType | String | Yes | Lookup type name |
Query parameters
The following table describes the query parameters.
| Parameter | Type | Required | Description | Accepted values / Default |
|---|---|---|---|---|
offset | Integer | No | Starting offset for pagination. | Default: 0 |
limit | Integer | No | Maximum number of results to return. | Default: 100, max: 100 |
Request headers
The following request headers must be included.
| Header | Value | Required |
|---|---|---|
Authorization | Bearer {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.
| Field | Type | Description |
|---|---|---|
tenantId | String | The identifier of the tenant. |
lookupType | String | The lookup type associated with the blocked value. |
value | String | The blocked value. |
createdAt | Number | The timestamp when the blocked value was created, in epoch milliseconds. |
createdBy | String | The 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"
}
]