はじめに
対話型AIプラットフォーム
チャットボットの概要
自然言語処理(NLP)
ボットの概念と用語
クイックスタートガイド
プラットフォームへのアクセス
ボットビルダーの操作
リリースノート
最新バージョン(英語)
以前のバージョン(英語)
廃止機能(英語)
コンセプト
設計
ストーリーボード
ダイアログタスク
ダイアログタスクとは
ダイアログビルダー
ノードタイプ
インテントノード
ダイアログノード
エンティティノード
フォームノード
確認ノード
ロジックノード
ボットアクションノード
サービスノード
Webhookノード
スクリプトノード
グループノード
エージェント転送ノード
ユーザープロンプト
音声通話プロパティ
イベント ハンドラー
ナレッジグラフ
ナレッジグラフの抽出
ナレッジグラフの構築
ボットにナレッジグラフを追加
グラフの作成
ナレッジグラフの構築
既存のソースからFAQを構築
特性、同義語、停止用語
変数ネームスペースの管理
更新
ノード間の質問と回答の移動
用語の編集と削除
質問と応答の編集
ナレッジグラフの分析
通知タスク
スモールトーク
デジタルスキル
デジタルフォーム
デジタルビュー
デジタルビューとは
パネル
ウィジェット
トレーニング
トレーニングとは
機械学習
機械学習とは
モデル検証
ファンダメンタルミーニング
ナレッジグラフ
示唆
ランキングおよび解決
NLPの詳細設定
NLPのガイドライン
インテリジェンス
インテリジェンスとは
コンテキスト
コンテキストインテント
割り込み
複数インテントの検出
エンティティの変更
デフォルトの会話
センチメント管理
トーン分析
テストとデバッグ
ボットと会話
発話テスト
バッチテスト
会話テスト
デプロイ
チャネル
公開
分析
ボットの分析
NLPメトリクス
会話フロー
Usage Metrics
封じ込め測定
カスタムダッシュボード
カスタムダッシュボードとは
メタタグ
カスタムダッシュボードとウィジェット
ユニバーサルボット
ユニバーサルボットとは
ユニバーサルボットの定義
ユニバーサルボットの作成
ユニバーサルボットのトレーニング
ユニバーサルボットのカスタマイズ
他言語の有効化
ストア
プラントと使用
Overview
Usage Plans
Support Plans
Invoices
管理
ボット認証
複数言語対応ボット
個人を特定できる情報の編集
ボット変数の使用
IVRのシステム連携
一般設定
ボット管理
ハウツー
会話スキルの設計
バンキングボットを作成
バンキングボット – 資金の振り替え
バンキングボット – 残高を更新
ナレッジグラフを構築
スマートアラートの予約方法
デジタルスキルの設計
デジタルフォームの設定方法
デジタルビューの設定方法
データテーブルのデータの追加方法
データテーブルのデータの更新方法
Add Data from Digital Forms
ボットのトレーニング
示唆の使用方法
インテントとエンティティのパターンの使用方法
コンテキスト切り替えの管理方法
ボットのデプロイ
エージェント転送の設定方法
ボット関数の使用方法
コンテンツ変数の使用方法
グローバル変数の使用方法
Web SDK Tutorial(英語)
Widget SDK Tutorial(英語)
ボットの分析
カスタムダッシュボードの作成方法
カスタムタグを使ってフィルタリング
管理
ボット管理者コンソール
ダッシュボード
ユーザーの管理
ユーザーの管理
グループの管理
ロール管理
ボット管理モジュール
登録
ユーザーの招待
招待状の一括送信
ユーザーデータのインポート
Active Directoryからユーザーを同期
セキュリティ/コンプライアンス
シングル サインオンの使用
セキュリティ設定
Billing(日本未対応)
  1. ホーム
  2. Integrations
  3. Using the Confluence Action Templates

Using the Confluence Action Templates

You can use the Prebuilt Action Templates from your Confluence integration to auto-create dialog tasks and test them using the Talk to Bot option.

Steps to create a dialog task using Confluence action templates:

  1. Go to Build > Conversation Skills > Dialog Tasks.
  2. Click Create a Dialog Task.
  3. On the Dialog Task pop-up, under the Integration, select the Confluence option to view the action templates.

    Note: If you have not configured any integration for your virtual assistant, you will see the Explore Integrations option. Once you click this option, you will be redirected to the Actions page to configure an integration for your VA. For more information, see Actions Overview.

Confluence Actions

The following Confluence action is supported in the latest version of the XO Platform:

Supported Actions Description Method
Create Content Creates content in the Confluence space. POST

Create Content

Steps to create content using the Confluence integration:

  1. Refer to the Installing the Confluence Templates section to install this template.
  2. The createContent dialog task is added with the following components:
    • createContent: A user intent to create content in the Confluence space.
    • contentType, spaceKey, contentTitle, and contentBody – Entity nodes for entering the required details to create content.
    • getResourceIdService – A bot action service to fetch the resource ID from the Confluence integration. Click the Plus icon to expand to view the getResouceIdService bot action component properties. In the Component Properties window, click the Edit Request link to edit the request parameters as shown below:

      Sample Request

      {
      "title": "Page 1",
      "type": "page",
      "space": {
      "key": "SFPWP"
      },
      "status": "current",
      "body": {
      "storage": {
      "value": "Here is the value of this body",
      "representation": "storage"
      }
      }
      }
      

      To add one or more responses, scroll down and click the +Add Response button:

      Sample Response

      {
      "id": "21004299",
      "type": "page",
      "status": "current",
      "title": "Page 1",
      "space": {
      "id": 196612,
      "key": "SFPWP",
      "name": "Space For Playing with Postman",
      "type": "global",
      "status": "current",
      "_expandable": {
      "settings": "/rest/api/space/SFPWP/settings",
      "metadata": "",
      "operations": "",
      "lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=SFPWP",
      "identifiers": "",
      "permissions": "",
      "icon": "",
      "description": "",
      "theme": "/rest/api/space/SFPWP/theme",
      "history": "",
      "homepage": "/rest/api/content/196695"
      },
      "_links": {
      "webui": "/spaces/SFPWP",
      "self": "https://xyz.atlassian.net/wiki/rest/api/space/SFPWP"
      }
      },
      "history": {
      "latest": true,
      "createdBy": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "createdDate": "2023-07-11T11:29:38.860Z",
      "_expandable": {
      "lastUpdated": "",
      "previousVersion": "",
      "lastOwnedBy": "",
      "contributors": "",
      "nextVersion": "",
      "ownedBy": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/21004299/history"
      }
      },
      "version": {
      "by": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "when": "2023-07-11T11:29:38.860Z",
      "friendlyWhen": "just a moment ago",
      "message": "",
      "number": 1,
      "minorEdit": false,
      "ncsStepVersion": "1",
      "ncsStepVersionSource": "ncs-ack",
      "confRev": "confluence$content$21004299.4",
      "contentTypeModified": false,
      "_expandable": {
      "collaborators": "",
      "content": "/rest/api/content/21004299"
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/21004299/version/1"
      }
      },
      "ancestors": [
      {
      "id": "196695",
      "type": "page",
      "status": "current",
      "title": "Space For Playing with Postman",
      "macroRenderedOutput": {},
      "extensions": {
      "position": 435
      },
      "_expandable": {
      "container": "/rest/api/space/SFPWP",
      "metadata": "",
      "restrictions": "/rest/api/content/196695/restriction/byOperation",
      "history": "/rest/api/content/196695/history",
      "body": "",
      "version": "",
      "descendants": "/rest/api/content/196695/descendant",
      "space": "/rest/api/space/SFPWP",
      "childTypes": "",
      "schedulePublishInfo": "",
      "operations": "",
      "schedulePublishDate": "",
      "children": "/rest/api/content/196695/child",
      "ancestors": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/196695",
      "tinyui": "/x/VwAD",
      "editui": "/pages/resumedraft.action?draftId=196695",
      "webui": "/spaces/SFPWP/overview"
      }
      }
      ],
      "container": {
      "id": 196612,
      "key": "SFPWP",
      "name": "Space For Playing with Postman",
      "type": "global",
      "status": "current",
      "history": {
      "createdBy": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      "
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://xyz.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "createdDate": "2022-11-21T13:02:10.295Z"
      },
      "_expandable": {
      "settings": "/rest/api/space/SFPWP/settings",
      "metadata": "",
      "operations": "",
      "lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=SFPWP",
      "identifiers": "",
      "permissions": "",
      "icon": "",
      "description": "",
      "theme": "/rest/api/space/SFPWP/theme",
      "homepage": "/rest/api/content/196695"
      },
      "_links": {
      "webui": "/spaces/SFPWP",
      "self": "https://xyz.atlassian.net/wiki/rest/api/space/SFPWP
      },
      "macroRenderedOutput": {},
      "body": {
      "storage": {
      "value": "Here is the value of this body",
      "representation": "storage",
      "embeddedContent": [],
      "_expandable": {
      "content": "/rest/api/content/21004299"
      }
      },
      "_expandable": {
      "editor": "",
      "atlas_doc_format": "",
      "view": "",
      "export_view": "",
      "styled_view": "",
      "dynamic": "",
      "editor2": "",
      "anonymous_export_view": ""
      }
      },
      "extensions": {
      "position": 3472
      },
      "_expandable": {
      "childTypes": "",
      "schedulePublishInfo": "",
      "metadata": "",
      "operations": "",
      "schedulePublishDate": "",
      "children": "/rest/api/content/21004299/child",
      "restrictions": "/rest/api/content/21004299/restriction/byOperation",
      "descendants": "/rest/api/content/21004299/descendant"
      },
      "_links": {
      "editui": "/pages/resumedraft.action?draftId=21004299",
      "webui": "/spaces/SFPWP/pages/21004299/storage+ddd",
      "context": "/wiki",
      "self": "https://xyz.atlassian.net/wiki/rest/api/content/21004299",
      "tinyui": "/x/C4BAAQ",
      "collection": "/rest/api/content",
      "base": "https://xyz.atlassian.net/wiki"
      }
      }
      

       

    • createContentService – A bot action service to create content in the Confluence space. Click the Plus icon to expand to view the createContentService bot action component properties. In the Component Properties window, click the Edit Request link to edit the request parameters.
    • createContentMessage – A message node with the script to display responses for creating content.
  3. Click the Train tab to complete the Dialog task training.
  4. Click the Talk to Bot icon to test and debug the dialog task.
  5. Follow the prompts in the VA console to create content on Confluence as shown below:
  6. Enter a title and body details when prompted by the VA as shown below:
  7. You will notice that content is created with the title and body on Confluence. Expand and click the View Content button.
  8. You can view the page on Confluence.

このページの内容

Using the Confluence Action Templates

You can use the Prebuilt Action Templates from your Confluence integration to auto-create dialog tasks and test them using the Talk to Bot option.

Steps to create a dialog task using Confluence action templates:

  1. Go to Build > Conversation Skills > Dialog Tasks.
  2. Click Create a Dialog Task.
  3. On the Dialog Task pop-up, under the Integration, select the Confluence option to view the action templates.

    Note: If you have not configured any integration for your virtual assistant, you will see the Explore Integrations option. Once you click this option, you will be redirected to the Actions page to configure an integration for your VA. For more information, see Actions Overview.

Confluence Actions

The following Confluence action is supported in the latest version of the XO Platform:

Supported Actions Description Method
Create Content Creates content in the Confluence space. POST

Create Content

Steps to create content using the Confluence integration:

  1. Refer to the Installing the Confluence Templates section to install this template.
  2. The createContent dialog task is added with the following components:
    • createContent: A user intent to create content in the Confluence space.
    • contentType, spaceKey, contentTitle, and contentBody – Entity nodes for entering the required details to create content.
    • getResourceIdService – A bot action service to fetch the resource ID from the Confluence integration. Click the Plus icon to expand to view the getResouceIdService bot action component properties. In the Component Properties window, click the Edit Request link to edit the request parameters as shown below:

      Sample Request

      {
      "title": "Page 1",
      "type": "page",
      "space": {
      "key": "SFPWP"
      },
      "status": "current",
      "body": {
      "storage": {
      "value": "Here is the value of this body",
      "representation": "storage"
      }
      }
      }
      

      To add one or more responses, scroll down and click the +Add Response button:

      Sample Response

      {
      "id": "21004299",
      "type": "page",
      "status": "current",
      "title": "Page 1",
      "space": {
      "id": 196612,
      "key": "SFPWP",
      "name": "Space For Playing with Postman",
      "type": "global",
      "status": "current",
      "_expandable": {
      "settings": "/rest/api/space/SFPWP/settings",
      "metadata": "",
      "operations": "",
      "lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=SFPWP",
      "identifiers": "",
      "permissions": "",
      "icon": "",
      "description": "",
      "theme": "/rest/api/space/SFPWP/theme",
      "history": "",
      "homepage": "/rest/api/content/196695"
      },
      "_links": {
      "webui": "/spaces/SFPWP",
      "self": "https://xyz.atlassian.net/wiki/rest/api/space/SFPWP"
      }
      },
      "history": {
      "latest": true,
      "createdBy": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "createdDate": "2023-07-11T11:29:38.860Z",
      "_expandable": {
      "lastUpdated": "",
      "previousVersion": "",
      "lastOwnedBy": "",
      "contributors": "",
      "nextVersion": "",
      "ownedBy": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/21004299/history"
      }
      },
      "version": {
      "by": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "when": "2023-07-11T11:29:38.860Z",
      "friendlyWhen": "just a moment ago",
      "message": "",
      "number": 1,
      "minorEdit": false,
      "ncsStepVersion": "1",
      "ncsStepVersionSource": "ncs-ack",
      "confRev": "confluence$content$21004299.4",
      "contentTypeModified": false,
      "_expandable": {
      "collaborators": "",
      "content": "/rest/api/content/21004299"
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/21004299/version/1"
      }
      },
      "ancestors": [
      {
      "id": "196695",
      "type": "page",
      "status": "current",
      "title": "Space For Playing with Postman",
      "macroRenderedOutput": {},
      "extensions": {
      "position": 435
      },
      "_expandable": {
      "container": "/rest/api/space/SFPWP",
      "metadata": "",
      "restrictions": "/rest/api/content/196695/restriction/byOperation",
      "history": "/rest/api/content/196695/history",
      "body": "",
      "version": "",
      "descendants": "/rest/api/content/196695/descendant",
      "space": "/rest/api/space/SFPWP",
      "childTypes": "",
      "schedulePublishInfo": "",
      "operations": "",
      "schedulePublishDate": "",
      "children": "/rest/api/content/196695/child",
      "ancestors": ""
      },
      "_links": {
      "self": "https://purushottam1.atlassian.net/wiki/rest/api/content/196695",
      "tinyui": "/x/VwAD",
      "editui": "/pages/resumedraft.action?draftId=196695",
      "webui": "/spaces/SFPWP/overview"
      }
      }
      ],
      "container": {
      "id": 196612,
      "key": "SFPWP",
      "name": "Space For Playing with Postman",
      "type": "global",
      "status": "current",
      "history": {
      "createdBy": {
      "type": "known",
      "accountId": "632852448b75455be45293bd",
      "accountType": "atlassian",
      "email": "alan.walker@xyz.com",
      "publicName": "alan.walker",
      "profilePicture": {
      "path": "/wiki/aa-avatar/632852448b75455be45293bd",
      "width": 48,
      "height": 48,
      "isDefault": false
      "
      },
      "displayName": "alan.walker",
      "isExternalCollaborator": false,
      "_expandable": {
      "operations": "",
      "personalSpace": ""
      },
      "_links": {
      "self": "https://xyz.atlassian.net/wiki/rest/api/user?accountId=632852448b75455be45293bd"
      }
      },
      "createdDate": "2022-11-21T13:02:10.295Z"
      },
      "_expandable": {
      "settings": "/rest/api/space/SFPWP/settings",
      "metadata": "",
      "operations": "",
      "lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=SFPWP",
      "identifiers": "",
      "permissions": "",
      "icon": "",
      "description": "",
      "theme": "/rest/api/space/SFPWP/theme",
      "homepage": "/rest/api/content/196695"
      },
      "_links": {
      "webui": "/spaces/SFPWP",
      "self": "https://xyz.atlassian.net/wiki/rest/api/space/SFPWP
      },
      "macroRenderedOutput": {},
      "body": {
      "storage": {
      "value": "Here is the value of this body",
      "representation": "storage",
      "embeddedContent": [],
      "_expandable": {
      "content": "/rest/api/content/21004299"
      }
      },
      "_expandable": {
      "editor": "",
      "atlas_doc_format": "",
      "view": "",
      "export_view": "",
      "styled_view": "",
      "dynamic": "",
      "editor2": "",
      "anonymous_export_view": ""
      }
      },
      "extensions": {
      "position": 3472
      },
      "_expandable": {
      "childTypes": "",
      "schedulePublishInfo": "",
      "metadata": "",
      "operations": "",
      "schedulePublishDate": "",
      "children": "/rest/api/content/21004299/child",
      "restrictions": "/rest/api/content/21004299/restriction/byOperation",
      "descendants": "/rest/api/content/21004299/descendant"
      },
      "_links": {
      "editui": "/pages/resumedraft.action?draftId=21004299",
      "webui": "/spaces/SFPWP/pages/21004299/storage+ddd",
      "context": "/wiki",
      "self": "https://xyz.atlassian.net/wiki/rest/api/content/21004299",
      "tinyui": "/x/C4BAAQ",
      "collection": "/rest/api/content",
      "base": "https://xyz.atlassian.net/wiki"
      }
      }
      

       

    • createContentService – A bot action service to create content in the Confluence space. Click the Plus icon to expand to view the createContentService bot action component properties. In the Component Properties window, click the Edit Request link to edit the request parameters.
    • createContentMessage – A message node with the script to display responses for creating content.
  3. Click the Train tab to complete the Dialog task training.
  4. Click the Talk to Bot icon to test and debug the dialog task.
  5. Follow the prompts in the VA console to create content on Confluence as shown below:
  6. Enter a title and body details when prompted by the VA as shown below:
  7. You will notice that content is created with the title and body on Confluence. Expand and click the View Content button.
  8. You can view the page on Confluence.
メニュー