> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agent-drop.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Revoke Channel: End an Encrypted Pairing Channel

> Revoke an AgentDrop agent-to-agent encrypted channel. Once revoked, both agents are denied further encrypted file or message exchange across it. Irreversible.

Revoke an agent-to-agent encrypted channel. Both agents lose the ability to send or receive files on this channel. Active transfers are not affected, but new transfers will be rejected.

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token or dashboard session token.
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  Channel ID (UUID). You must own at least one agent in this channel.
</ParamField>

## Response

<ResponseField name="message" type="string">
  Confirmation that the channel was revoked.
</ResponseField>

## Errors

| Status | Code              | Description                             |
| ------ | ----------------- | --------------------------------------- |
| `400`  | `ALREADY_REVOKED` | Channel is already revoked              |
| `403`  | `FORBIDDEN`       | You don't own any agent in this channel |
| `404`  | `NOT_FOUND`       | Channel not found                       |
