KG 추출 질문을 가져옵니다.
이 API를 사용하려면 앱에 KnowlegedGraph의 관리자 API 범위가 필요합니다.
GET https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=&offset=
KG 추출 질문을 가져옵니다.
이 API를 사용하려면 앱에 KnowlegedGraph의 관리자 API 범위가 필요합니다.
GET https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=&offset=
매개 변수 | 필수/선택 사항 | 설명 |
---|---|---|
host | 필수 | 환경 URL(예: https://bots.kore.ai) |
streamId | 필수 | 봇 ID 또는 스트림 ID. 봇의 일반 설정 페이지에서 이를 액세스할 수 있습니다. |
ExtractionId | 필수 | 질문을 가져올 ExtractionId입니다. |
매개 변수 | 필수/선택 사항 | 설명 |
---|---|---|
limit | 선택 사항 | 50으로 설정되지 않은 경우, 가져올 레코드 수입니다. |
offset | 선택 사항 | 0으로 설정되지 않은 경우, 건너뛸 레코드 수입니다. |
다음 구문을 포함한 헤더에 JWT를 포함한 API를 호출합니다. auth: {{JWT}}
application/json
curl -X POST \ https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=20&offset=0 \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \ -H 'content-type: application/json'
{ "extractions": [ { "_id": "qna-647d1b55-af75-5e51-b286-ea3f70041d2a", "status": true, "question": "Am I going to be charged for this security feature?", "answer": "As of now, this service is free of charge and is a security measure for your online account safety.", "language": "en", "kEId": "ke-xxxxx-xxx-xxx-xxx-xxxxx", "createdBy": "u-xxxxx-xxx-xxxx-xxx-xxxxx", "streamId": "st-xxxxx-xxx-xxx-xxx-xxxxx", "createdOn": "2020-01-03T06:59:19.472Z", "modifiedOn": "2020-01-03T06:59:19.472Z", "__v": 0 } ] }
ナレッジグラフの抽出に関する質問のリストを取得します。
このAPIを使用するために、アプリは [KnowlegdeGraph] の管理APIスコープを必要とします。
GET https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=&offset=
パラメータ | 必須/任意 | 説明 |
---|---|---|
ホスト | 必須 | 環境URL(例: https://bots.kore.ai) |
streamId | 必須 | ボットIDまたはストリームID。ボットの [一般設定] ページからアクセスすることができます。 |
ExtractionId | 必須 | 質問を取得する必要がある場所からのExtractionIdです。 |
パラメータ | 必須/任意 | 説明 |
---|---|---|
limit | 任意 | 指定されていない場合、取得されるレコード数は50に設定されます。 |
offset | 任意 | 指定されていない場合、スキップされるレコード数は0に設定されます。 |
以下の構文を使用して、JWTをヘッダーに含むAPIを呼び出します。 auth: {{JWT}}
application/json
curl -X POST \ https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=20&offset=0 \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \ -H 'content-type: application/json'
{ "extractions": [ { "_id": "qna-647d1b55-af75-5e51-b286-ea3f70041d2a", "status": true, "question": "Am I going to be charged for this security feature?", "answer": "As of now, this service is free of charge and is a security measure for your online account safety.", "language": "en", "kEId": "ke-xxxxx-xxx-xxx-xxx-xxxxx", "createdBy": "u-xxxxx-xxx-xxxx-xxx-xxxxx", "streamId": "st-xxxxx-xxx-xxx-xxx-xxxxx", "createdOn": "2020-01-03T06:59:19.472Z", "modifiedOn": "2020-01-03T06:59:19.472Z", "__v": 0 } ] }
To get a Get KG Extraction Questions.
To use this API, app needs the Admin API Scope of KnowlegdeGraph.
GET https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=&offset=
Parameter | Required/Optional | Description |
---|---|---|
host | Required | Environment URL, for example, https://bots.kore.ai |
streamId | Required | Bot ID or Stream ID. You can access it from the General Settings page of the bot. |
ExtractionId | Required | ExtractionId from where the questions need to be fetched. |
Parameter | Required/Optional | Description |
---|---|---|
limit | Optional | Number of records to be fetched, if not given set to 50. |
offset | Optional | Number of records to be skipped, if not given set to 0. |
Invoke the API with JWT in the header with the following syntax:
auth: {{JWT}}
application/json
curl -X POST \ https://{{host}}/api/public/stream/{{streamId}}/qna/{{ExtractionId}}/questions?limit=20&offset=0 \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \ -H 'content-type: application/json'
{ "extractions": [ { "_id": "qna-647d1b55-af75-5e51-b286-ea3f70041d2a", "status": true, "question": "Am I going to be charged for this security feature?", "answer": "As of now, this service is free of charge and is a security measure for your online account safety.", "language": "en", "kEId": "ke-xxxxx-xxx-xxx-xxx-xxxxx", "createdBy": "u-xxxxx-xxx-xxxx-xxx-xxxxx", "streamId": "st-xxxxx-xxx-xxx-xxx-xxxxx", "createdOn": "2020-01-03T06:59:19.472Z", "modifiedOn": "2020-01-03T06:59:19.472Z", "__v": 0 } ] }