Delete specific Autopilot match statistic
Learn how to delete a specific Autopilot match statistic record using its composite key.
The Delete match statistic API deletes a single Autopilot match statistic record for a tenant. It identifies the record using a composite key that includes the lookupType, source, and unmappedValue.
You can use this API to remove individual match statistics records, for example when correcting data or resetting specific matching results.
HTTP method and endpoint
Use the following HTTP method and endpoint path to submit the request:
DELETE /configuration/{tenantId}/autopilot/stats/{lookupType}/{source}/{unmappedValue}
This endpoint deletes a specific Autopilot match statistic record based on the provided composite key.
The following table describes the endpoint path parameters.
| Parameter | Type | Required | Description |
|---|---|---|---|
tenantId | String | Yes | Tenant identifier |
lookupType | String | Yes | Lookup type name |
source | String | Yes | Source system name |
unmappedValue | String | Yes | Unmapped value |
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 |
|---|---|---|
status | String | Indicates the result of the operation. |
Example response
The following example shows a successful deletion response.
{
"status": "success"
}