How Can We Help?
Welcome message
There is a default hard-coded welcome message for the automation bot, however you may choose to replace this with your own. This is an example template.
The template is stored in the WelcomeMessageCard field of the Tenants table.
Required Settings
Setting | Value |
---|---|
n/a | |
SQL Query
Text
n/a
Example Data Model
Text
n/a
Example Card Template
Basic format to be customised
Text
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"type": "AdaptiveCard",
"originator": "OriginatorIdPlaceholder",
"body": [
{
"type": "Container",
"backgroundImage": {
"url": "https://cdn.modalitysystems.com/TeamworkAnalytics/Automation/Backgrounds/header_lightblue.png"
},
"items": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "Image",
"url": "https://cdn.modalitysystems.com/Icons/ic_fluent_bot_add_filled.png",
"altText": "brand icon",
"size": "Small"
}
],
"width": 30
},
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"text": "Teams Status",
"horizontalAlignment": "Right",
"wrap": true,
"color": "Dark",
"size": "Small"
},
{
"type": "TextBlock",
"text": "Welcome to Teams Tips Bot",
"horizontalAlignment": "Right",
"spacing": "None",
"size": "Large",
"color": "Attention",
"wrap": true,
"weight": "Bolder"
}
],
"width": 70
}
]
}
]
},
{
"type": "TextBlock",
"text": "I am your Teams Tips Bot and I'm here to send you tips for Microsoft Teams and give insights into how to use Teams most effectively.",
"wrap": true,
"separator": true
},
{
"type": "TextBlock",
"text": "Demo text/links - to be replaced once agreed.",
"wrap": true
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "Teams Support",
"url": "https://support.microsoft.com/en-us/teams"
}
]
}
]
}