# AgentMail Delete Draft

> AgentMail Delete Draft is a free API for AI agents from AgentMail at mpp.api.agentmail.to, Free, status unknown (last checked 2026-09-15).

Permanently deletes a specific email draft from an AI agent inbox

## Facts

- Endpoint: DELETE https://mpp.api.agentmail.to/v0/inboxes/:inbox_id/drafts/:draft_id
- Price: Free
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: AgentMail
- Docs: https://docs.agentmail.to
- Website: https://agentmail.to
- Tags: email, inboxes, domains, drafts, threads, webhooks, messaging, ai, social
- Canonical page: https://www.zero.xyz/c/agentmail-draft-id-5a14f5a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-UeA5PhbS4sGtyutJUEQE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentmail-draft-id-5a14f5a0 -d '<json body>'
```

Example prompt: Delete the draft with ID 'drft_abc123' from inbox 'inbox_xyz789' — I decided not to send it.

## When to prefer this

Use this endpoint when you need to permanently remove a specific draft email from an AgentMail AI agent inbox. Prefer this when cleaning up stale or unwanted drafts, canceling a composed message before it is sent, or managing draft lifecycle as part of an automated email workflow.

## Known failure modes

- Draft ID not found — returns 404 if the draft_id does not exist in the specified inbox
- Inbox ID not found — returns 404 if the inbox_id does not exist
- Unauthorized — returns 401 if the Bearer token is missing or invalid
- Draft already deleted — may return 404 if the draft was previously removed
- Forbidden — returns 403 if the authenticated user does not own the specified inbox

## How this service works

Delete Draft

## Output

Returns an empty or minimal success response confirming the draft has been permanently deleted from the specified inbox. No draft object is returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "inbox_id",
  "draft_id"
 ],
 "properties": {
  "draft_id": {
   "type": "string",
   "title": "DraftId",
   "description": "ID of draft."
  },
  "inbox_id": {
   "type": "string",
   "title": "InboxId",
   "description": "The ID of the inbox."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentmail-draft-id-5a14f5a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mpp.api.agentmail.to](https://www.zero.xyz/host/mpp.api.agentmail.to/llms.txt)
