# DELETE /api/v1/email/account/actions/suspend

> Suspend or unsuspend a mailbox

- Group: email
- Tier: W
- Required scope: write:email
- Docs: https://api.inleed.com/reference/email/delete-suspend-mailbox

## Description

`POST` suspends the mailbox (logins, delivery and sending stop; the mail stays); `DELETE` unsuspends it. The result reports the flag read back off the node. The main system account cannot be suspended here.

## Query parameters

- `address` — string (required)

## Request

```bash
curl -X DELETE "https://mcp.inleed.com/api/v1/email/account/actions/suspend" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "target": {
    "input": "example.se",
    "kind": "domain",
    "domain": null,
    "mailbox": null,
    "serviceId": 90714,
    "domainServiceId": null,
    "daUsername": "inleed42",
    "node": "web12",
    "userId": 4821,
    "note": null
  },
  "address": "info@example.se",
  "suspended": true,
  "changed": true,
  "note": "The mailbox is suspended: logins, delivery and sending are blocked; the stored mail is untouched. Unsuspend with a DELETE to this endpoint."
}
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- POST /api/v1/email/account/actions/suspend — https://api.inleed.com/reference/email/suspend-mailbox
- GET /api/v1/email/account — https://api.inleed.com/reference/email/get-mailbox
- PATCH /api/v1/email/account — https://api.inleed.com/reference/email/update-mailbox
- DELETE /api/v1/email/account — https://api.inleed.com/reference/email/delete-mailbox

