All Products
Search
Document Center

Qoder CN Series:Get a channel

Last Updated:Jul 15, 2026

Retrieve a Channel by ID.

Request headers

Header

Required

Description

Authorization

Yes

Bearer <PAT>

Path parameters

Parameter

Type

Required

Description

channel_id

string

Yes

Channel ID. Same value as the Channel object's id.

Example request

curl -s -X GET 'https://api.qoder.com.cn/api/v1/forward/channels/ci_019eabc123' \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK

{
  "id": "ci_019eabc123",
  "type": "channel",
  "identity_id": "idn_019eabc123",
  "template_id": "tmpl_support",
  "channel_type": "feishu",
  "name": "Support Feishu channel",
  "enabled": true,
  "binding_status": "bound",
  "channel_config": {
    "response_options": {
      "include_tool_calls": false,
      "include_thinking": false
    }
  },
  "created_at": "2026-06-18T10:00:00Z",
  "updated_at": "2026-06-18T10:00:00Z"
}

Response fields

Returns the Channel object.

Errors

HTTP

Type

Code

Trigger

401

TOKEN_INVALID

PAT invalid or expired.

404

not_found_error

channel_not_found

Channel does not exist or is not visible to the caller.

Notes

  • binding_status is system-maintained and cannot be directly changed by Update Channel.

  • A channel can handle inbound messages only when enabled=true and binding_status="bound".