Skip to main content
GET
/
settings
/
subchannel
Get Subchannels
curl --request GET \
  --url https://demo.enneo.ai/api/mind/settings/subchannel \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "subchannels": [
    {
      "id": 1,
      "channel": "email",
      "name": "Support",
      "isDefault": false,
      "interface": "internal",
      "enabled": true,
      "data": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT-based authentication

Query Parameters

channels
enum<string>[]

Filter by one or more channels. Accepts array format (?channels[]=email&channels[]=chat). Use 'all' to get subchannels from all channels (?channels[]=all). For backward compatibility, single channel parameter (?channel=email) is also supported.

Available options:
all,
email,
chat,
voice,
phone,
letter,
internal
channel
enum<string>

(Deprecated) Filter by a single channel. Use 'channels' parameter instead for better flexibility. Use 'all' to get subchannels from all channels.

Available options:
all,
email,
chat,
voice,
phone,
letter,
internal
id
integer

Filter by a specific subchannel ID

Response

Successful operation

Data format of Enneo success messages

success
boolean

Operation was successful

Example:

true

subchannels
object[]