# Delete fraud prevention list item

This method allows you to delete an existing fraud prevention list item linked to the merchant's account.

Endpoint: DELETE /fraud-prevention-list-items/{id}
Version: 1.0.0
Security: MerchantID

## Path parameters:

  - `id` (string, required)
    Unique identifier of the fraud prevention list item to be deleted.

## Header parameters:

  - `merchant` (string, required)

  - `signature` (string, required)

## Response 200 fields (application/json):

  - `id` (string, required)
    Unique identifier of the fraud prevention list item.

  - `list_type` (string, required)
    Type of fraud prevention list, where pass indicates an allowlist and reject indicates a blocklist.
    Enum: "pass", "reject"

  - `payment_field` (string, required)
    Payment field to match against the fraud prevention list.
    Enum: "card_id", "cardholder", "customer_id", "customer_email", "ip_address"

  - `field_value` (string, required)
    Value of the payment field to match against the fraud prevention list.
Depending on the value provided in payment_field, the corresponding validation rules are enforced.

  - `created_at` (string)
    Creation date of the list item.

  - `expired_at` (string)
    Expiration date of the list item.
If not provided, the item never expires.

  - `description` (string)
    Reason for adding this item to the list.

  - `created_by` (string)
    Email address of the user who created the list item.

  - `error` (object, required)
    Error object.

  - `error.code` (string, required)
    Unauthorized access due to invalid credentials.
    Example: 1.01

  - `error.messages` (array, required)
    Array of error messages applied to the decline payment.

