# Revoke Webhook Connection

> Revoke Webhook Connection is a free API for AI agents from inbox.withzero.xyz, callable via MPP, free · handshake required, status unknown (last checked 2026-09-12).

Deletes a registered webhook connection by ID, permanently revoking it and stopping event forwarding from that external source.

## Facts

- Endpoint: DELETE https://inbox.withzero.xyz/api/v1/connections/{id}
- Price: free · handshake required
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 1
- Provider: inbox.withzero.xyz
- Website: https://inbox.withzero.xyz
- Canonical page: https://www.zero.xyz/c/inbox-withzero-xyz-revoke-webhook-connection-3b06ef5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tiZ2la8z9L8bjkoF8DgKt

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 inbox-withzero-xyz-revoke-webhook-connection-3b06ef5e -d '<json body>'
```

Example prompt: Remove the webhook connection with ID abc123 from my inbox — I don't need that external event source anymore.

## When to prefer this

Use this endpoint when you need to permanently remove a specific registered external webhook source from your inbox.withzero.xyz inbox, identified by its connection ID. Prefer this over simply ignoring the connection when you want to clean up integrations, stop processing events from a source, or free up quota.

## Known failure modes

- Connection ID not found — 404 not found if the specified connection does not exist
- Unauthorized — signed proof credential missing or invalid, rejecting the request
- Already deleted — attempting to revoke an already-revoked connection may return 404
- Invalid ID format — malformed connection ID causes a 400 bad request

## How this service works

Revoke a webhook connection. 📖 Full guide: https://inbox.withzero.xyz/llms.txt

## Output

Returns a JSON object with a single boolean field `deleted: true` confirming the webhook connection was successfully revoked and removed.

## Request schema (JSON Schema)

```json
{
 "type": "object"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "deleted"
 ],
 "properties": {
  "deleted": {
   "type": "boolean"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/inbox-withzero-xyz-revoke-webhook-connection-3b06ef5e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inbox.withzero.xyz](https://www.zero.xyz/host/inbox.withzero.xyz/llms.txt)
