# CuseTheJuice Mailbox Delete Folder

> CuseTheJuice Mailbox Delete Folder is a paid API for AI agents from mail.cusethejuice.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Deletes a non-system Maildir folder from a CuseTheJuice mailbox account

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/folder/delete
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mail-cusethejuice-com-649e5ef6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wqwLZkaTStdx1XR7sveNE

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 mail-cusethejuice-com-649e5ef6 -d '<json body>'
```

Example prompt: Delete the folder called 'OldProjects' from my CuseTheJuice mailbox — my email is alice@cusethejuice.com, username is alice, and my password is hunter2.

## When to prefer this

Use this endpoint when an agent needs to permanently remove a custom Maildir folder (non-system) from a CuseTheJuice mailbox. Prefer this over generic IMAP folder deletion when operating within the CuseTheJuice x402-payment ecosystem. Do not use for deleting individual messages (use the message delete endpoint) or for listing/moving messages.

## Known failure modes

- Invalid credentials (wrong email, username, or password) result in authentication failure
- Attempting to delete a system folder (e.g. INBOX, Sent, Drafts) is rejected
- Folder name does not exist in the mailbox returns not-found error
- Missing required fields in the JSON body result in a validation error
- Payment failure via x402 prevents the request from being processed

## How this service works

CuseTheJuice mailbox @ mail.cusethejuice.com — GET probe for x402 challenge (folder delete). Real call is POST with JSON body + Payment-Signature header; schema in extensions.bazaar. https://mail.cusethejuice.com/machine-mail.html

## Output

A confirmation response indicating whether the specified Maildir folder was successfully deleted from the mailbox. Returns an error if the folder does not exist, is a protected system folder, or credentials are invalid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email"
  },
  "password": {
   "type": "string",
   "minLength": 1
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "folder_name": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mail-cusethejuice-com-649e5ef6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mail.cusethejuice.com](https://www.zero.xyz/host/mail.cusethejuice.com/llms.txt)
