DeleteCategory

Update time: 2024-07-29 16:46:16

Delete category

  • Single user trigger frequency: 300/5min
  • Applicable Products: Cloud VoD

Request

Body Params

NameDescription
*nodeIdInteger
Node id

Response

Body Params

NameDescription
codeInteger
Result status code, 200 indicates success
messageString
Return message

Error code

Error code(code)Description(message)HTTP statusSemantic
24112000Parameter error400Parameter error
1000Tags are used by workflow templates and direct deletion is prohibited200Tags are used by workflow templates and direct deletion is prohibited
1000The parent classification node ID does not exist or has been deleted200The parent classification node ID does not exist or has been deleted
1000The category node ID cannot be empty200The category node ID cannot be empty

Example

JSON
JSON
Request example
Copy Copy success
#!/bin/bash
username='example_username'
apiKey='example_apiKey'
date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`
password=`echo -en "$date" | openssl dgst -sha1 -hmac $apiKey -binary | openssl enc -base64`
curl -i --url "https://api.cdnetworks.com/vod/videoCategory/deleteCategory" \
-X "POST" \
-u "$username:$password" \
-H "Date: $date" \
-H "x-cnc-auth-method: BASIC" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
	"nodeId": "id1"
}'
Response example
Copy Copy success
{
  "code": 200,
  "message": "Operation succeeded"
}
Is the content of this document helpful to you?
Yes
I have suggestion
Submitted successfully! Thank you very much for your feedback, we will continue to strive to do better!