跳转到主要内容
POST
/
kling
/
v1
/
general
/
delete-elements
删除主体
curl --request POST \
  --url https://www.anyfast.ai/kling/v1/general/delete-elements \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "element_id": "863121023120580662"
}
'
{
  "code": 0,
  "message": "SUCCEED",
  "request_id": "<string>"
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

请求体

application/json
element_id
string
必填

要删除的主体 ID(来自查询响应的 elements[].element_id)。

示例:

"863121023120580662"

响应

删除成功

code
integer

0 表示成功

示例:

0

message
string
示例:

"SUCCEED"

request_id
string