GET api/ItemData/GetAudioTranscript/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ObjResultOfAIAudio| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | AIAudio |
None. |
|
| Error |
Error description |
string |
None. |
| Success |
Flag of successful operation |
boolean |
None. |
| ErrorCode |
Error code |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"segments": [
{
"start": 1.1,
"end": 2.1,
"text": "sample string 3"
},
{
"start": 1.1,
"end": 2.1,
"text": "sample string 3"
}
]
},
"error": "sample string 1",
"success": true,
"errorCode": 3
}