根据通话id查询通话录音地址
请求地址:https://cloud-vms.volcengineapi.com
请求方式:POST
参数 | 数据类型 | 是否必填 | 示例值 | 描述 |
---|---|---|---|---|
X-Date | String | 是 | 20201103T104027Z | 鉴权字段。请参考文档中心-火山引擎。 |
Authorization | String | 是 | HMAC-SHA256 Credential*** | 鉴权字段。请参考文档中心-火山引擎。 |
ServiceName | String | 是 | vms | 服务名称。该接口是vms 。 |
Region | String | 是 | cn-north-1 | 区域名称,固定值cn-north-1 。 |
Content-Type | String | 是 | application/x-www-form-urlencoded |
签名相关header字段参考火山引擎公共参数
参数 | 参数类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | QueryAudioRecordFileUrl | 接口名称 |
Version | String | 是 | 2022-01-01 | 接口版本 |
参数 | 参数类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
CallId | String | 是 | NM21062918163787800001012500051888 | 通话id |
curl --location --request POST 'https://cloud-vms.volcengineapi.com?Action=QueryAudioRecordFileUrl&Version=2022-01-01' \ --header 'ServiceName: vms' \ --header 'Region: cn-north-1' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'X-Date: 20201103T104027Z' \ --header 'Authorization: HMAC-SHA256 Credential=***' \ --data-urlencode 'CallId=NM21062918163787800001012500051888'
参数 | 数据类型 | 描述 |
---|---|---|
ResponseMetadata | ResponseMetadata | 响应公共参数。 |
Result | Result | 响应业务参数。 |
参数 | 数据类型 | 描述 |
---|---|---|
RequestId | string | 请求 ID。 |
Action | string | 请求的接口名称。 |
Version | string | 请求的版本号。 |
Service | string | 请求的服务名称。 |
Region | string | 请求的区域。 |
Error | Error | 错误信息。如果请求没有异常则不会返回错误信息。 |
参数 | 数据类型 | 实例值 | 描述 |
---|---|---|---|
AudioRecordFileUrl | String | https://xxxx/volc-communication-audio/NM21062918163787800001012500051888.mp3?x-expires=1625222087&x-signature=kjskZuHRWGn3zX9IMiEwmRhOEsM%3D | 录音文件地址,三小时有效时间,过期后需重新查询,下同 |
AudioRecordLeftFileUrl | String | https://xxxx/volc-communication-audio/NM21062918163787800001012500051888-left.wav?x-expires=1625222087&x-signature=yzIWnImF9oZxulgGk2oKfZNZ5s8%3D | 左声道录音文件 |
AudioRecordRightFileUrl | String | https://xxxx/volc-communication-audio/NM21062918163787800001012500051888-right.wav?x-expires=1625222087&x-signature=0HEEwVfyn1YVyYA5CEQKiQ5GhSk%3D | 右声道录音文件 |
参数 | 数据类型 | 描述 |
---|---|---|
Code | string | 错误码。 |
Message | string | 错误信息。 |
火山引擎网关的公共错误码,请参见火山引擎网关公共错误码。
Code | Message | 说明 | 处理建议 |
---|---|---|---|
RequestParametersError | Unexpected Parameters | 参数异常 | 检查请求通话id是否为空 |
SystemError | The system meets an error while executing your request, contact us please | 服务异常,可能是遇到了网络抖动 | 可重试请求 |
{ "ResponseMetadata": { "RequestId": "202107021534470102252431530287857C", "Action": "QueryAudioRecordFileUrl", "Version": "2022-01-01", "Service": "vms", "Region": "cn-north-1" }, "Result": { "AudioRecordFileUrl": "https://xxxx/volc-communication-audio/NM21062918163787800001012500051888.mp3?x-expires=1625222087&x-signature=kjskZuHRWGn3zX9IMiEwmRhOEsM%3D", "AudioRecordLeftFileUrl": "https://xxxx/volc-communication-audio/NM21062918163787800001012500051888-left.wav?x-expires=1625222087&x-signature=yzIWnImF9oZxulgGk2oKfZNZ5s8%3D", "AudioRecordRightFileUrl": "https://xxxx/volc-communication-audio/NM21062918163787800001012500051888-right.wav?x-expires=1625222087&x-signature=0HEEwVfyn1YVyYA5CEQKiQ5GhSk%3D" } }