Theme
Delete Custom Voice
POST
https://www.kkiai.com/kling/v1/general/delete-voices
Request Parameters
Authorization
Add the Authorization parameter to the Header. Its value is the Token concatenated after Bearer.
Example: Authorization: Bearer ********************
Header Parameters
| Parameter Name | Type | Required | Description | Example |
|---|---|---|---|---|
Content-Type | string | Optional | application/json | |
Authorization | string | Optional | Bearer {{YOUR_API_KEY}} |
Body Parameters (application/json)
| Parameter Name | Type | Required | Description |
|---|---|---|---|
voice_id | string | Required |
Request Example
json
{
"voice_id": "string"
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/kling/v1/general/delete-voices' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"voice_id": "string"
}'Response
🟢 200 Success
Response Example
json
{}