# PayWeave Mail – Delete Message

> PayWeave Mail – Delete Message is a free API for AI agents from mail.payweave.services, callable via x402, Free, status unknown (last checked 2026-09-13).

Permanently deletes a specific email message from a disposable inbox by inbox slug and message ID.

## Facts

- Endpoint: POST https://mail.payweave.services/inboxes/%7Bslug%7D/messages/%7Bid%7D/delete
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-mail-delete-message-de5657c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_74i1qI9w-DIZtJ8b2Ya4y

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 payweave-mail-delete-message-de5657c2 -d '<json body>'
```

Example prompt: Delete message abc123 from the inbox with slug 'agent-inbox-xyz' on PayWeave Mail — I've already processed it and want it gone.

## When to prefer this

Use this endpoint when an AI agent needs to clean up or manage a disposable inbox by removing a specific message after reading or processing it. Prefer this over general inbox management when you have both the inbox slug and the specific message ID and want a hard delete rather than archiving.

## Known failure modes

- Message ID not found — returns error or deleted:false
- Inbox slug does not exist — 404 or error response
- Message already deleted — idempotency not guaranteed, may return error
- Invalid slug or ID format — 400 bad request
- Payment not processed — 402 Payment Required if x402 payment header missing

## How this service works

Disposable email inboxes for agents — create, receive, read, and send. Pay per call.

## Output

Returns a JSON object with a single boolean field `deleted` indicating whether the message was successfully deleted (true) or not.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "properties": {},
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "deleted"
     ],
     "properties": {
      "deleted": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-mail-delete-message-de5657c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mail.payweave.services](https://www.zero.xyz/host/mail.payweave.services/llms.txt)
