Skip to content

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 NameTypeRequiredDescriptionExample
Content-TypestringOptionalapplication/json
AuthorizationstringOptionalBearer {{YOUR_API_KEY}}

Body Parameters (application/json)

Parameter NameTypeRequiredDescription
voice_idstringRequired

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
{}