获取语音消息详情
POST
/get_record
请求参数
Body 参数application/json
file
string
必需
out_format
enum<string>
必需
枚举值:
mp3amrwmam4aspxoggwavflac
示例
{
"file_id": "000000924e61704361744f6e65426f747c4d736746696c657c327c3739303531343031397c373433313532313837383033323238303633367c373433313532313837383033323238303633357c.cd8e41763598ae7c0b7dd348d5d4804f.amr",
"out_format": "amr"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/get_record' \
--header 'Content-Type: application/json' \
--data-raw '{
"file_id": "000000924e61704361744f6e65426f747c4d736746696c657c327c3739303531343031397c373433313532313837383033323238303633367c373433313532313837383033323238303633357c.cd8e41763598ae7c0b7dd348d5d4804f.amr",
"out_format": "amr"
}'
返回响应
🟢200成功
application/json
Body
status
enum<string>
必需
枚举值:
ok
retcode
number
必需
data
object
必需
file
string
本地路径
url
string
网络路径
file_size
string
文件大小
file_name
string
文件名
base64
string
必需
message
string
必需
wording
string
必需
echo
string | null
必需
示例
{
"status": "ok",
"retcode": 0,
"data": {
"file": "string",
"url": "string",
"file_size": "string",
"file_name": "string",
"base64": "string"
},
"message": "string",
"wording": "string",
"echo": "string"
}
修改于 2024-10-30 13:11:33