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

# Delete List Entry

> DELETE /v3/lists/{list_uuid}/entries/{entry_uuid}/ — remove an entry from a Didit blocklist, allowlist, or custom list. Auto-unblocks on system lists.

export const AgentPromptAccordion = ({prompt, title = "AI Agent Integration Prompt"}) => {
  const [copied, setCopied] = React.useState(false);
  const handleCopy = e => {
    e.stopPropagation();
    if (!prompt) return;
    navigator.clipboard.writeText(prompt.trim()).then(() => {
      setCopied(true);
      setTimeout(() => setCopied(false), 2000);
    });
  };
  const agents = ["Claude Code", "Codex", "Cursor", "Devin", "Windsurf", "GitHub Copilot"];
  return <div className="didit-agent-card">
      {}
      <div className="didit-agent-titlebar">
        <div className="didit-agent-dots" aria-hidden="true">
          <span className="didit-agent-dot didit-agent-dot-red"></span>
          <span className="didit-agent-dot didit-agent-dot-yellow"></span>
          <span className="didit-agent-dot didit-agent-dot-green"></span>
        </div>
        <span className="didit-agent-filename">{title}</span>
        <button type="button" className={`didit-agent-copy ${copied ? "didit-agent-copy-copied" : ""}`} onClick={handleCopy} title="Copy prompt to clipboard" aria-label={copied ? "Copied!" : "Copy prompt to clipboard"}>
          {copied ? <>
              <svg width="13" height="13" viewBox="0 0 16 16" fill="none">
                <path d="M3 8.5l3.5 3.5L13 4" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
              </svg>
              <span>Copied</span>
            </> : <>
              <svg width="13" height="13" viewBox="0 0 16 16" fill="none">
                <rect x="5" y="5" width="9" height="9" rx="1.5" stroke="currentColor" strokeWidth="1.5" />
                <path d="M11 5V3.5A1.5 1.5 0 0 0 9.5 2h-6A1.5 1.5 0 0 0 2 3.5v6A1.5 1.5 0 0 0 3.5 11H5" stroke="currentColor" strokeWidth="1.5" />
              </svg>
              <span>Copy</span>
            </>}
        </button>
      </div>

      {}
      <pre className="didit-agent-body"><code>{prompt.trim()}</code></pre>

      {}
      <div className="didit-agent-footer">
        <span className="didit-agent-footer-label">Paste into</span>
        <div className="didit-agent-chips">
          {agents.map(name => <span key={name} className="didit-agent-chip">{name}</span>)}
        </div>
      </div>
    </div>;
};

<AgentPromptAccordion
  title="Delete List Entry API Prompt"
  prompt={`Remove an entry from a Didit list through the Management API.

Endpoint:
DELETE https://verification.didit.me/v3/lists/{list_uuid}/entries/{entry_uuid}/

Authentication:
Use the x-api-key header with my Didit API key.

Goal:
- Remove a single entry from a blocklist, allowlist, or custom list.
- For system blocklists, removing the entry automatically unblocks the underlying entity (Face, KYC, Phone, Email, Wallet, etc.) — future verifications/screenings will no longer be declined for that match.

Path parameters:
- list_uuid — list UUID from GET /v3/lists/.
- entry_uuid — entry UUID from GET /v3/lists/{list_uuid}/entries/ or the create response.

Important semantics:
- Returns 204 No Content with an empty body on success.
- Calling DELETE again on the same entry_uuid returns 404.
- For blocklists with biometric entries (face), the embedding is also removed from the matching database.

Example call:
curl -X DELETE "https://verification.didit.me/v3/lists/{list_uuid}/entries/{entry_uuid}/" \\
-H "x-api-key: YOUR_API_KEY"

Failure modes:
- 401 — missing or malformed x-api-key.
- 403 — canonical { "detail": "You do not have permission to perform this action." } envelope.
- 404 — list or entry not found in this application.

Side effects:
- System blocklist entries: underlying entity is unblocked (is_blocklisted set to false on Face/KYC/Phone/Email model).
- Face entries: biometric embedding removed from matching database.

For the full integration shape, see /integration/integration-prompt.`}
/>

Remove an entry from a list. For system blocklists, the corresponding item is automatically unblocked so it will no longer be declined during future verifications. Returns 204 on success.

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "https://verification.didit.me/v3/lists/{list_uuid}/entries/{entry_uuid}/" \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>
