A subchannel is a further differentiation of the channel, and is - For emails, they are the mailboxes, e.g. [email protected] and [email protected] - For chat, they are the chatbots, e.g. the chatbot on the website and the chatbot on the customer portal - For voice, they are the phone numbers, e.g. the phone number for support and the phone number for sales.
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": {}
}
]
}JWT-based authentication
Successful operation
Data format of Enneo success messages
Operation was successful
true
Anzeigen untergeordnete attribute
1
Channel of ticket
email, portal, phone, letter, system, chat, walkIn "email"
"Support"
Whether this subchannel is the default for its channel. Only one subchannel per channel can be default.
false
The underlying data source of this subchannel.
Currently only 'internal' is supported, meaning the subchannel is managed directly by Enneo.
internal "internal"
true
Channel-specific properties of this subchannel, e.g. IMAP Username and password for emails
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": {}
}
]
}