# Function Description

Batch delete finished product

# Request

# request example

POST /video/delete HTTPS
Host: <host>
Content-Type: application/json
Authorization: <AuthString>

# Request Headers

Name Description Type Mandatory
Authorization User token information string true

# Request Parameters

none

# Request Body

request body is Json character string,for example:

{
  "videoIds": [
    32132,
    132
  ]
}
Name Description Type Mandatory
videoIds list of finished product id int[] true

# Response

# Response Header

No special response header

# Response Body

Successful Response Body :

{
  "code": 0,
  "enMsg": "success",
  "msg": "成功",
  "data": null
}

Failed Response Body

{
  "code": <errorCode>,
  "enMsg": <errorMessage>,
  "msg": <errorMessage>,
  "data": null
}