Theme
Delete Custom Elements (New Version)
POST
https://www.kkiai.com/kling /v1/general/delete-elements
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}} |
Request Example
json
{
"element_id":""
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/kling /v1/general/delete-elements' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"element_id":""
}'Response
🟢 200 Success
Response Example
json
{}