Full Example
Configuring Notification Channels
1. SMS Notification Example
Field Breakdown:
Field | Type | Description |
---|---|---|
channels | array | List of communication channels. |
channel | string* | Specifies that the notification will be sent via SMS. |
to | string * | The recipient's phone number (e.g., 0763407346 ). |
metaData | object | Contains additional configuration options for SMS notifications. |
retryOnFailure | boolean* | Indicates whether the system should retry sending the SMS if it fails. |
subject | string* | The subject or title of the notification. Example: "OTP" . |
message | string * | The content of the SMS message to be sent to the recipient. Example: "Your code is 0092" . |
refId | string* | A reference ID for the notification. Example: "REF0092" . |
When
retryOnFailure
= trueExample Request:
[
{
"channels": [
{
"channel": "sms",
"to": "0763407346",
"metaData": {
"retryOnFailure": true
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
2. Telegram Notification Example
Field Breakdown:
Field | Type | Description |
---|---|---|
channels | array | List of communication channels. |
channel | string* | Specifies that the notification will be sent via Telegram. |
to | string* | The recipient’s Telegram ID (e.g., user_telegram_id ). |
metaData | object | Contains additional configuration options for Telegram. |
retryOnFailure | boolean* | Indicates whether the system should retry sending the Telegram message if it fails. |
parseMode | string* | Defines the message format (e.g., html for rich text formatting). |
When
retryOnFailure
= true[
{
"channels": [
{
"channel": "telegram",
"to": "user_telegram_id",
"metaData": {
"retryOnFailure": true,
"parseMode": "html"
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
3. Email Notification Example
Field Breakdown:
Field | Type | Description |
---|---|---|
channels | array | List of communication channels. |
channel | string* | Specifies that the notification will be sent via Email. |
to | string* | The recipient’s email address (e.g., example@example.com ). |
metaData | object | Contains additional configuration options for Email. |
retryOnFailure | boolean* | Indicates whether the system should retry sending the email if it fails. |
cc | string | Carbon copy recipients |
bcc | string | Blind carbon copy recipients |
attachments | string | URL to the file to be attached |
separateTo | boolean* | Whether to send the message separately to each recipient |
When
retryOnFailure
= true[
{
"channels": [
{
"channel": "email",
"to": "example@example.com",
"metaData": {
"retryOnFailure": true,
"cc": "",
"bcc": "",
"attachments": "file url",
"separateTo": false
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
Modified at 2025-03-07 09:09:50