Returns the pairing requests waiting for the caller org to approve — one per…
Returns the pairing requests waiting for the caller org to approve — one per person who messaged a connected bot on a channel whose DM policy is "pairing"…
GET /v1/channels/pairing
| Address | https://api.hanzo.ai/v1/channels/pairing |
| Method | GET |
| Operation | get_channels_pairing |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the pairing requests waiting for the caller org to approve — one per person who messaged a connected bot on a channel whose DM policy is "pairing" and who is not allowed yet. Each row carries the CODE an org admin passes to POST /v1/channels/pairing/approve. Expired requests are not returned. Codes are capability strings: they are shown here, and never logged.
Request
GET /v1/channels/pairing takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | pairingQueue | ok |
200 body — 6 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
pending | body | pairingView[] | — | Pending is every unexpired pairing request waiting on an org admin, each carrying the channel, the requesting sender and the code to approve it with. |
pending[].channel | body | string | — | Channel is the transport the request arrived on — discord, slack, teams or telegram — and half of what approval names. |
pending[].code | body | string | — | Code is the CAPABILITY that authorises the approval: eight characters from a 32-symbol uppercase alphabet (A-Z0-9 minus the confusables 0, O, 1 and I), minted… |
pending[].createdAt | body | integer | — | CreatedAt is Unix SECONDS of FIRST contact: when the request was minted and the code sent. |
pending[].lastSeen | body | integer | — | LastSeen is Unix SECONDS of the MOST RECENT message from this sender while the request has been pending. |
pending[].sender | body | string | — | Sender is the transport-native user id waiting for access — the same identity inbox messages carry. |
Failure carries the platform error shape — see Errors.
Examples
hanzo channels pairing getimport { Configuration, ChannelsApi } from 'hanzoai';
const api = new ChannelsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getChannelsPairing();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ChannelsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ChannelsApi(client).get_channels_pairing()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.ChannelsAPI.GetChannelsPairing(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, channels_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = channels_api::get_channels_pairing(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ChannelsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new ChannelsApi(client).getChannelsPairing();curl https://api.hanzo.ai/v1/channels/pairing \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches channels through the channels tool, which names its 7 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_channels"
}
}
}'How is this guide?