ファイルまたはURLを使用して抽出内容をインポートします。

このAPIを使用するために、アプリは [ナレッジグラフ] の [管理者APIスコープ] を必要とします。

POST https://{{host}}/api/public/bot/{{botId}}/qna/import?language=en

パスパラメータ

パラメータ 必須/任意 説明
ホスト 必須 環境URL(例: https://bots.kore.ai)
botId 必須 ボットID。ボットの [一般設定] ページからアクセスすることができます。

クエリパラメータ

パラメータ 必須/任意 説明
language 必須 ボットの言語(例:英語の「en」、ドイツ語の「de」)です。

本文パラメータ

パラメータ 必須/任意 説明
fileUrl 任意 抽出されるFAQの場所を指すURLです。
fileId 任意 FAQファイルの場所を指すファイルIDです。
name 任意 FAQに与えられる名前です。

認証

以下の構文を使用して、JWTをヘッダーに含むAPIを呼び出します。 auth: {{JWT}}

応答のコンテンツタイプ

application/json

サンプルリクエスト

curl -X POST \ https://{{host}}/api/public/bot/{{botId}}/qna/import?language=en \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \ -H 'content-type: application/json' \ -d '{ "fileUrl":"https:///faqs-with-answers.htm", (or) "fileId":"5exxxxxxxxc3a7291", "name": "KGFile" }'

サンプル応答

{ “_id”: <extractionId>, “status”: “success”}

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed