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

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

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_PAT"

Example response

HTTP 200 OK
{
  "id": "channel_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

HTTPTypeCodeTrigger
401authentication_errorauthentication_requiredPAT invalid or expired.
404not_found_errorchannel_not_foundChannel 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".

Update a channel

Create channel QR session