All Products
Search
Document Center

Intelligent Media Services:AddCategory

Last Updated:Dec 23, 2025

Creates a category.

Operation description

You can create at most three levels of categories. Each category level can contain a maximum of 100 subcategories.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
CateNamestringYes

The category name.

  • The value can be up to 64 bytes in length.
  • The value must be encoded in UTF-8.
ParentIdlongNo

The ID of the parent category.

5
TypestringNo

The type of the category. Valid values:

  • default: audio, video, and image files. This is the default value.
  • material: short video materials.
default

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The request ID.

****63E8B7C7-4812-46AD-0FA56029AC86****
Categoryobject

The information about the category.

Typestring

The type of the category. Valid values:

  • default: audio, video, and image files. This is the default value.
  • material: short video materials.
default
ParentIdlong

The ID of the parent category. By default, if ParentId is left empty or less than 1, -1 is returned, which indicates that the created category is the root directory.

-1
CateNamestring

The category name.

CateIdlong

The ID of the created category.

45
Levellong

The level of the category. A value of 0 indicates a level-1 category, a value of 1 indicates a level-2 category, and a value of 2 indicates a level-3 category.

0

Examples

Sample success responses

JSONformat

{
  "RequestId": "****63E8B7C7-4812-46AD-0FA56029AC86****",
  "Category": {
    "Type": "default",
    "ParentId": -1,
    "CateName": "",
    "CateId": 45,
    "Level": 0
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history