# User Channels

A user can be alerted to specific events to a defined channel. A user channel will describe the endpoint to send an alert to. To see all current channels configured for a user, navigate to your user profile page to see your channels

<figure><img src="https://s3.amazonaws.com/helpscout.net/docs/assets/60208fd212248b2c96d50eeb/images/62a00e98573200079252262c/file-X3843J2y61.png" alt=""><figcaption></figcaption></figure>

Expand the Channel tab and Click on Create. You will get this modal:

<figure><img src="/files/tWdDLsoX9hLEEHtAwc9H" alt=""><figcaption></figcaption></figure>

<table><thead><tr><th width="204.6953125">Name</th><th>Description</th></tr></thead><tbody><tr><td>Channel</td><td><p>Channel Type:<br>- EMAIL - This will the notifications to your email.<br>- SMS - This will send the notifications to your phone number.<br>- PUSH - This will send a system notification through the browser you are using. Remember to enable the site's permission to send you notification. See documentation for your specific browser.<br><img src="/files/d7Wn60DAtpsvKpFQIcGz" alt="" data-size="original"><br>- NOTIFICATION - This will send notifications within TilliT DO, accessible through the Bell icon on the top bar.</p><p><img src="/files/OjfTwJUAHyJsuHFNJsAG" alt="" data-size="original"></p></td></tr><tr><td>Endpoint</td><td>See <a href="https://help.tillit.cloud/api/mqtt-api/subscribe-to-a-tillit-topic">https://help.tillit.cloud/api/mqtt-api/subscribe-to-a-tillit-topic</a></td></tr><tr><td>Options</td><td><p>See below for general options and Sft channel options. It should be written as a json object<br></p><pre><code>export type ChannelOptions = {
  username?: string;
  headers?: any;
  authType?: 'OAUTH' | 'BASIC' | 'TOKEN';
  tokenUrl?: string;
  clientId?: string;
  secretName?: string;
  scope?: string;
  grantType?: string;
  jsonata?: string;
};
export type SftChannelOptions = {
tempFolder?: string;
filePrefix?: string;
host?: string;
username?: string;
port?: number;
secretName?: string;
};
Example:
{
"username": "myName",
"tokenUrl": "tokenUrl.here"
}
</code></pre></td></tr><tr><td>Active</td><td>Enable the channel to be accessible</td></tr></tbody></table>

### Example

Below is an example of setting up a user email channel. Subscriptions that use this channel will send information to your email.

<figure><img src="/files/YsoIKL2DyxdzZUdgbqAG" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.tillit.cloud/tillit/knowledge-base/users/manage/user-channels.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
