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

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

Name
Description

Channel

Channel Type: - EMAIL - This will the notifications to your email. - SMS - This will send the notifications to your phone number. - 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. - NOTIFICATION - This will send notifications within TilliT DO, accessible through the sidebar by clicking on the bell notification

Options

See below for general options and Sft channel options. It should be written as a json object

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

Active

Enable the channel to be accessible

Example

Last updated

Was this helpful?