Skip to main content
POST
/
paas
/
v4
/
voice
/
delete
删除音色
curl --request POST \
  --url https://open.bigmodel.cn/api/paas/v4/voice/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "voice": "voice_clone_20240315_143052_001",
  "request_id": "voice_save_req_001"
}'
{
  "voice": "voice_clone_20240315_143052_001",
  "update_time": "2024-03-15 14:30:52"
}

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Body

application/json
voice
string
required

音色

Example:

"voice_clone_20240315_143052_001"

request_id
string

请求ID

Example:

"voice_save_req_001"

Response

业务处理成功

voice
string

音色

Example:

"voice_clone_20240315_143052_001"

update_time
string

删除时间

Example:

"2024-03-15 14:30:52"

I