> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zixflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete List Entry By ID

> This endpoint allows the deletion of a selected list entry.

#### Description

This API endpoint enables the deletion of a specific list entry by providing the unique identifiers of both the list and the entry.

#### Path

<ParamField path="listId" type="string" required>
  A unique identifier for the list, allowing for precise referencing.
</ParamField>

<ParamField path="entryId" type="string" required>
  A unique identifier for the list entry to be deleted.
</ParamField>

#### Response

<ResponseField name="status" type="boolean">
  Indicates the success or failure of the list entry deletion. In this case,
  true signifies a successful operation.
</ResponseField>

<ResponseField name="message" type="string">
  Provides a human-readable message accompanying the response. In this instance,
  it confirms the successful deletion of the list entry with the message "List
  Entry deleted successfully."
</ResponseField>

<ResponseExample>
  ```json 200-Success theme={null}
  {
      "status": true,
      "message": "List Entry deleted successfully"
  }
  ```

  ```json 401-Unauthorised theme={null}
  {
    "status": false,
    "message": "No token provided"
  }
  ```
</ResponseExample>
