Overview
Confused about "Overview"?
Let us know how we can improve our documentation:
Almost all API requests are specific to a channel (e.g. add a message to channel “livestream:rockets”) and as we saw already, channels are organized in groups called channel types. All applications start with five default channel types, each have different name and are preconfigured to best fit one use-case.
Channel types can be configured with specific permissions and features.
The five default channel types come with good default permission policies. You can find more information on how to manage permissions in the Channel Types section.
There are five built-in channel types:
- Livestream: Sensible defaults in case you want to build chat like YouTube or Twitch.
- Messaging: Configured for apps such as WhatsApp or Facebook Messenger.
- Team: If you want to build your own version of Slack or something similar, start here.
- Commerce: Good defaults for building something like your own version of Intercom or Drift.
- Gaming: Defaults for adding chat to video games.
As you can see in the examples below, you can define your own Channel types and configure them to fit your needs. The Channel type allows you to configure these features:
- typing_events: Controls if typing indicators are shown.
- read_events: Controls whether the chat shows how far you’ve read.
- connect_events: Determines if events are fired for connecting and disconnecting to a chat.
- search: Controls if messages should be searchable.
- reactions: If users are allowed to add reactions to messages.
- replies: Enables message threads and replies.
- mutes: Determines if users are able to mute other users.
- push_notifications: If messages are allowed to generate push notifications.
- uploads: Allows image and file uploads within messages.
- url_enrichment: When enabled, messages containing URLs will be enriched automatically with image and text related to the message. This is disabled by default for the livestream channel type and we do not recommend enabling it for performance reasons.
- skip_last_msg_update_for_system_msgs: Allows to not update the last_message_at timestamp of a channel in the case of system messages.
Channel Types Fields
Copied!Confused about "Channel Types Fields"?
Let us know how we can improve our documentation:
name | type | description | default | optional |
---|---|---|---|---|
name | string | The name of the channel type must be unique per application | ||
max_message_length | int | The max message length | 5,000 | ✓ |
typing_events | default | Enable typing events | default | ✓ |
read_events | boolean | Enable read events | true | ✓ |
connect_events | boolean | Enable connect events | true | ✓ |
search | boolean | Enable message search | true | ✓ |
reactions | boolean | Enable message reactions | true | ✓ |
replies | boolean | Enable replies (threads) | true | ✓ |
mutes | boolean | Enable mutes | true | ✓ |
uploads | boolean | Enable file and image upload | true | ✓ |
url_enrichment | boolean | Automatically enrich URLs | true | ✓ |
automod | string | Disabled, simple or AI are valid options for the Automod (AI based moderation is a premium feature) | simple | ✓ |
commands | list of string | The commands that are available on this channel type | [] | ✓ |
push_notifications | boolean | Enable push notifications | true | ✓ |
quotes | boolean | Allow quotes/inline replies | true | ✓ |
skip_last_msg_update_for_system_msgs | string | Allows to not update the last_message_at timestamp of a channel in the case of system messages | false- | ✓ |
Creating a Channel Type
Copied!Confused about "Creating a Channel Type"?
Let us know how we can improve our documentation:
Please note that applications have a hard limit of 50 channel types. If you need more than this please have a look at the Multi-tenant & Teams section.
List Channel Types
Copied!Confused about "List Channel Types"?
Let us know how we can improve our documentation:
You can retrieve the list of all channel types defined for your application.
Get a Channel Type
Copied!Confused about "Get a Channel Type"?
Let us know how we can improve our documentation:
You can retrieve a channel type definition with this endpoint.
Edit a Channel Type
Copied!Confused about "Edit a Channel Type"?
Let us know how we can improve our documentation:
Channel type features, commands and permissions can be changed. Only the fields that must change need to be provided, fields that are not provided to this API will remain unchanged.
Features of a channel can be updated by passing the boolean flags:
Settings can also be updated by passing in the desired new values:
Remove a Channel Type
Copied!Confused about "Remove a Channel Type"?
Let us know how we can improve our documentation: