音声認識結果一括送信API
開発中
POST
/sample/speach_recognition_all
General
機能#
Requestパラメータ
Headerパラメータ
Authorization
string
必須
APIキーは、事前共有する
Request Bodyパラメータapplication/json
conversation
object
必須
tenantId
string
テナントID
sessionId
integer
セッションID
direction
integer
通話方向
connectTime
string
通話開始時刻
disconnectTime
string
通話終了時刻
recordList
array [object {6}]
必須
discription
string
説明
例
{
"conversation": {
"status": "complete",
"tenantId": "05053698333",
"sessionId": 942125,
"direction": 1,
"connectTime": "2024-06-21T08:27:34.084Z",
"disconnectTime": "2024-06-21T08:28:36.930Z",
"completed": 1,
"recordList": [
{
"recordId": 1,
"ani": "08075082398",
"dnis": "05053698333",
"agentId": "T83330001",
"agentName": "コムデザイン一郎",
"sentenceList": [
{
"sequence": 1,
"speakerId": 2,
"startTime": "2024-06-21T08:27:38.444Z",
"endTime": "2024-06-21T08:27:40.244Z",
"text": "私はコムデザイン一郎です"
},
{
"sequence": 2,
"speakerId": 1,
"startTime": "2024-06-21T08:27:42.264Z",
"endTime": "2024-06-21T08:27:44.094Z",
"text": "パソコンの調子が悪いです"
}
]
},
{
"recordId": 1,
"ani": "08075082398",
"dnis": "05053698332",
"agentId": "T83330002",
"agentName": "コムデザイン二郎",
"sentenceList": [
{
"sequence": 1,
"speakerId": 2,
"startTime": "2024-06-21T08:28:38.444Z",
"endTime": "2024-06-21T08:28:40.244Z",
"text": "コムデザイン二郎に電話が変りました"
},
{
"sequence": 2,
"speakerId": 1,
"startTime": "2024-06-21T08:28:42.264Z",
"endTime": "2024-06-21T08:28:44.094Z",
"text": "まだ、パソコンの調子が悪いです"
}
]
}
],
"description": ""
}
}
サンプルコード
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/sample/speach_recognition_all' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"conversation": {
"status": "complete",
"tenantId": "05053698333",
"sessionId": 942125,
"direction": 1,
"connectTime": "2024-06-21T08:27:34.084Z",
"disconnectTime": "2024-06-21T08:28:36.930Z",
"completed": 1,
"recordList": [
{
"recordId": 1,
"ani": "08075082398",
"dnis": "05053698333",
"agentId": "T83330001",
"agentName": "コムデザイン一郎",
"sentenceList": [
{
"sequence": 1,
"speakerId": 2,
"startTime": "2024-06-21T08:27:38.444Z",
"endTime": "2024-06-21T08:27:40.244Z",
"text": "私はコムデザイン一郎です"
},
{
"sequence": 2,
"speakerId": 1,
"startTime": "2024-06-21T08:27:42.264Z",
"endTime": "2024-06-21T08:27:44.094Z",
"text": "パソコンの調子が悪いです"
}
]
},
{
"recordId": 1,
"ani": "08075082398",
"dnis": "05053698332",
"agentId": "T83330002",
"agentName": "コムデザイン二郎",
"sentenceList": [
{
"sequence": 1,
"speakerId": 2,
"startTime": "2024-06-21T08:28:38.444Z",
"endTime": "2024-06-21T08:28:40.244Z",
"text": "コムデザイン二郎に電話が変りました"
},
{
"sequence": 2,
"speakerId": 1,
"startTime": "2024-06-21T08:28:42.264Z",
"endTime": "2024-06-21T08:28:44.094Z",
"text": "まだ、パソコンの調子が悪いです"
}
]
}
],
"description": ""
}
}'
Response
🟢200成功
application/json
Body
object {0}
例
{}
更新日時 2024-12-09 06:34:12