Skip to main content
Channels

Get a channel

Retrieve a Channel by ID.

GET /api/v1/forward/channels/{channel_id} Returns Channel binding and status details.

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>

Path parameters

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

Example request

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

Example response

HTTP 200 OK
{
  "id": "channel_019eabc123",
  "type": "channel",
  "identity_id": "idn_019eabc123",
  "identity_resolution": {
    "mode": "fixed"
  },
  "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.

Error codes

HTTPTypeTrigger
401authentication_errorPAT or SAT is invalid or expired.
404not_found_errorChannel 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".
  • identity_resolution.mode is fixed or pairing. In pairing mode, identity_id and template_id are both null.
Get a channel - Qoder