Delete multiple blocked values for a Lookup type
Learn more about how to remove multiple blocked values for a specific lookup type in a single request.
Use Delete multiple blocked values for a Lookup type API to remove multiple blocked values for a specific lookup type in a single request. This operation deletes only the values associated with the specified lookup type.
HTTP method and endpoint
Use the following HTTP method and endpoint path to submit the request:
POST /configuration/{tenantId}/autopilot/{lookupType}/blockedValues/_delete
The following table describes the endpoint path parameters.
| Parameter | Type | Required | Description |
|---|---|---|---|
tenantId | String | Yes | Tenant identifier. |
lookupType | String | Yes | Lookup type name. |
Request headers
The following request headers must be included.
| Header | Value | Required |
|---|---|---|
Authorization | Bearer {token} | Yes |
Request body
The following table describes the request body parameters.
| Parameter | Type | Required | Description | Accepted values / Default |
|---|---|---|---|---|
values | Array of strings | Yes | List of blocked values to remove for the specified lookup type. | Must be non-empty. Maximum 1000 values per request. |
Example request
Use the following example to see how a complete request is structured with headers and a JSON body.
{
"values": ["TEST", "NA"]
}
Response fields
The following table describes the fields returned in the response body.
| Values | Type | Description |
|---|---|---|
status | String | Indicates the result of the operation. |
Example response
The following example shows a successful response.
{
"status": "success"
}